ConstraintValidatorFactoryInterface.php 812 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. use Symfony\Component\Validator\Constraint;
  12. /**
  13. * Specifies an object able to return the correct ConstraintValidatorInterface
  14. * instance given a Constrain object.
  15. */
  16. interface ConstraintValidatorFactoryInterface
  17. {
  18. /**
  19. * Given a Constraint, this returns the ConstraintValidatorInterface
  20. * object that should be used to verify its validity.
  21. *
  22. * @param Constraint $constraint The source constraint
  23. *
  24. * @return ConstraintValidatorInterface
  25. */
  26. function getInstance(Constraint $constraint);
  27. }