| 1 | <?php |
||
| 12 | class Home |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var ContainerInterface |
||
| 16 | */ |
||
| 17 | protected $ci; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Home constructor. |
||
| 21 | * @param ContainerInterface $ci |
||
| 22 | */ |
||
| 23 | 1 | public function __construct(ContainerInterface $ci) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @return ContainerInterface |
||
| 30 | */ |
||
| 31 | public function getContainer() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param Request $request |
||
| 38 | * @param Response $response |
||
| 39 | * @return Response |
||
| 40 | */ |
||
| 41 | 1 | public function hello(Request $request, Response $response) |
|
| 47 | |||
| 48 | } |
||
| 49 |