| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class HomeController |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @Route(route="/", name="index", methods="GET") |
||
| 20 | */ |
||
| 21 | public function index() |
||
| 22 | { |
||
| 23 | return 'index'; |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @Route(route="/", name="method", methods="POST") |
||
| 28 | */ |
||
| 29 | public function method() |
||
| 32 | } |
||
| 33 | |||
| 34 | #[Route(route: '/attribute', name: 'attribute', methods: 'GET', group: 'test')] |
||
| 40 |