AnnotationFileLoader.php 684 B

12345678910111213141516171819202122232425
  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\Routing\Loader;
  11. trigger_deprecation('symfony/routing', '6.4', 'The "%s" class is deprecated, use "%s" instead.', AnnotationFileLoader::class, AttributeFileLoader::class);
  12. class_exists(AttributeFileLoader::class);
  13. if (false) {
  14. /**
  15. * @deprecated since Symfony 6.4, to be removed in 7.0, use {@link AttributeFileLoader} instead
  16. */
  17. class AnnotationFileLoader extends AttributeFileLoader
  18. {
  19. }
  20. }