Total Complexity | 4 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
9 | class Kmom01 extends AbstractController |
||
10 | { |
||
11 | #[Route("/", name: "home")] |
||
12 | public function home(): Response |
||
13 | { |
||
14 | return $this->render('home.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")] |
||
27 | } |
||
28 | |||
29 | #[Route("/lucky", name: "lucky")] |
||
39 | } |
||
40 | } |
||
41 |