equal
deleted
inserted
replaced
|
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 * Interface for object initializers. |
|
16 * |
|
17 * Concrete implementations of this interface are used by the GraphWalker |
|
18 * to initialize objects just before validating them/ |
|
19 * |
|
20 * @author Fabien Potencier <fabien@symfony.com> |
|
21 * |
|
22 * @api |
|
23 */ |
|
24 interface ObjectInitializerInterface |
|
25 { |
|
26 /** |
|
27 * Initializes an object just before validation. |
|
28 * |
|
29 * @param object $object The object to validate |
|
30 * |
|
31 * @api |
|
32 */ |
|
33 function initialize($object); |
|
34 } |