| 1 | <?php |
||
| 13 | class Controller |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Deliver base HTML layout |
||
| 18 | * |
||
| 19 | * @return Response |
||
| 20 | * @Route("/", name="index", methods="GET") |
||
| 21 | * @Guest |
||
| 22 | */ |
||
| 23 | 1 | public function index() : Response |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @return Response |
||
| 32 | * @Route("/robots.txt", name="robots.txt") |
||
| 33 | * @Guest |
||
| 34 | */ |
||
| 35 | 1 | public function robotstxt() : Response |
|
| 43 | } |
||
| 44 |