Drupal investigation

BlackholeMetadataFactory.php 957B

1234567891011121314151617181920212223242526272829
  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\Mapping;
  11. @trigger_error('The '.__NAMESPACE__.'\BlackholeMetadataFactory class is deprecated since version 2.5 and will be removed in 3.0. Use the Symfony\Component\Validator\Mapping\Factory\BlackHoleMetadataFactory class instead.', E_USER_DEPRECATED);
  12. use Symfony\Component\Validator\Mapping\Factory\BlackHoleMetadataFactory as MappingBlackHoleMetadataFactory;
  13. /**
  14. * Alias of {@link Factory\BlackHoleMetadataFactory}.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. *
  18. * @deprecated since version 2.5, to be removed in 3.0.
  19. * Use {@link Factory\BlackHoleMetadataFactory} instead.
  20. */
  21. class BlackholeMetadataFactory extends MappingBlackHoleMetadataFactory
  22. {
  23. }