| Total Complexity | 6 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 5 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class BaseController extends AbstractController |
||
| 10 | { |
||
| 11 | #[Route("/", name: "index")] |
||
| 12 | public function index(): Response |
||
| 13 | { |
||
| 14 | return $this->render('index.html.twig'); |
||
| 15 | } |
||
| 16 | |||
| 17 | #[Route("/about", name: "about")] |
||
| 18 | public function about(): Response |
||
| 19 | { |
||
| 20 | return $this->render('about.html.twig'); |
||
| 21 | } |
||
| 22 | |||
| 23 | #[Route("/report", name: "report")] |
||
| 24 | public function report(): Response |
||
| 25 | { |
||
| 26 | return $this->render('report.html.twig'); |
||
| 27 | } |
||
| 28 | |||
| 29 | #[Route("/work", name: "work")] |
||
| 33 | } |
||
| 34 | |||
| 35 | #[Route("/api", name: "api")] |
||
| 36 | public function api(): Response |
||
| 39 | } |
||
| 40 | |||
| 41 | #[Route("/metrics", name: "metrics")] |
||
| 47 |