Route.php 775 B

1234567891011121314151617181920212223242526
  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\Annotation;
  11. // do not deprecate in 6.4/7.0, to make it easier for the ecosystem to support 6.4, 7.4 and 8.0 simultaneously
  12. class_exists(\Symfony\Component\Routing\Attribute\Route::class);
  13. if (false) {
  14. /**
  15. * @deprecated since Symfony 7.4, use {@see \Symfony\Component\Routing\Attribute\Route} instead
  16. */
  17. #[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD)]
  18. class Route extends \Symfony\Component\Routing\Attribute\Route
  19. {
  20. }
  21. }