Fix bug in style changes for the Use cases on the live site.
[yaffs-website] / vendor / symfony / validator / ObjectInitializerInterface.php
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 }