| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 23 | class RouteWithPrefixController |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @Route("/path", methods={"GET", "POST"}, name="action") |
||
| 27 | */ |
||
| 28 | public function action(): void |
||
| 29 | { |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @Route("/path_two", methods={"GET", "POST"}, name="action_two") |
||
| 34 | */ |
||
| 35 | public function actionTwo(): void |
||
| 37 | } |
||
| 38 | } |
||
| 39 |