Drupal investigation

Optional.php 891B

123456789101112131415161718192021222324252627282930
  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\Constraints\Collection;
  11. @trigger_error('The '.__NAMESPACE__.'\Optional class is deprecated since version 2.3 and will be removed in 3.0. Use the Symfony\Component\Validator\Constraints\Optional class instead.', E_USER_DEPRECATED);
  12. use Symfony\Component\Validator\Constraints\Optional as BaseOptional;
  13. /**
  14. * @Annotation
  15. * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  16. *
  17. * @author Bernhard Schussek <bschussek@gmail.com>
  18. *
  19. * @deprecated since version 2.3, to be removed in 3.0.
  20. * Use {@link \Symfony\Component\Validator\Constraints\Optional} instead.
  21. */
  22. class Optional extends BaseOptional
  23. {
  24. }