LegacyValidator.php 804 B

12345678910111213141516171819202122232425262728
  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\Validator;
  11. @trigger_error('The '.__NAMESPACE__.'\LegacyValidator class is deprecated since Symfony 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
  12. /**
  13. * A validator that supports both the API of Symfony < 2.5 and Symfony 2.5+.
  14. *
  15. * @author Bernhard Schussek <bschussek@gmail.com>
  16. *
  17. * @see \Symfony\Component\Validator\ValidatorInterface
  18. * @see \Symfony\Component\Validator\Validator\ValidatorInterface
  19. * @deprecated since version 2.5, to be removed in 3.0.
  20. */
  21. class LegacyValidator extends RecursiveValidator
  22. {
  23. }