NothingButNameController.php 232 B

12345678910111213
  1. <?php
  2. namespace Symfony\Component\Routing\Tests\Fixtures\AttributeFixtures;
  3. use Symfony\Component\Routing\Annotation\Route;
  4. class NothingButNameController
  5. {
  6. #[Route(name: 'action')]
  7. public function action()
  8. {
  9. }
  10. }