comparison vendor/symfony/validator/ObjectInitializerInterface.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children c2387f117808
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
1 <?php
2
3 /*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\Validator;
13
14 /**
15 * Prepares an object for validation.
16 *
17 * Concrete implementations of this interface are used by {@link ValidationVisitorInterface}
18 * to initialize objects just before validating them.
19 *
20 * @author Fabien Potencier <fabien@symfony.com>
21 * @author Bernhard Schussek <bschussek@gmail.com>
22 */
23 interface ObjectInitializerInterface
24 {
25 /**
26 * Initializes an object just before validation.
27 *
28 * @param object $object The object to validate
29 */
30 public function initialize($object);
31 }