ObjectInitializerInterface.php 806 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Validator;
  11. /**
  12. * Prepares an object for validation.
  13. *
  14. * Concrete implementations of this interface are used by {@link Validator\ContextualValidatorInterface}
  15. * to initialize objects just before validating them.
  16. *
  17. * @author Fabien Potencier <fabien@symfony.com>
  18. * @author Bernhard Schussek <bschussek@gmail.com>
  19. */
  20. interface ObjectInitializerInterface
  21. {
  22. /**
  23. * Initializes an object just before validation.
  24. *
  25. * @param object $object The object to validate
  26. */
  27. public function initialize(object $object);
  28. }