1 | <?php |
||
8 | class HomeController |
||
9 | { |
||
10 | /** |
||
11 | * Basic GET route action |
||
12 | * |
||
13 | * @return Response |
||
14 | */ |
||
15 | 1 | public function indexAction() |
|
19 | |||
20 | /** |
||
21 | * Basic greeting example with parameters |
||
22 | * |
||
23 | * @param $name |
||
24 | * @return Response |
||
25 | */ |
||
26 | 1 | public function helloAction($name) |
|
30 | |||
31 | /** |
||
32 | * Temporary method for db interaction |
||
33 | * |
||
34 | * @param Db $db |
||
35 | * @return Response |
||
36 | */ |
||
37 | 1 | public function databaseAction(Db $db) |
|
55 | } |
||
56 |