LocalizedPrefixWithRouteWithoutLocale.php 309 B

1234567891011121314
  1. <?php
  2. namespace Symfony\Component\Routing\Tests\Fixtures\AttributeFixtures;
  3. use Symfony\Component\Routing\Annotation\Route;
  4. #[Route(path: ['en' => '/en', 'nl' => '/nl'])]
  5. class LocalizedPrefixWithRouteWithoutLocale
  6. {
  7. #[Route(path: '/suffix', name: 'action')]
  8. public function action()
  9. {
  10. }
  11. }