1 | <?php |
||
10 | final class Controller |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $secret; |
||
17 | |||
18 | /** |
||
19 | * @var bool |
||
20 | */ |
||
21 | private $secured = FALSE; |
||
22 | |||
23 | /** |
||
24 | * @var callable[] |
||
25 | */ |
||
26 | private $router; |
||
27 | |||
28 | 6 | public function __construct(ContainerInterface $ci, Handler $handler) |
|
48 | |||
49 | |||
50 | 6 | public function __invoke(Request $request, Response $response, $args) |
|
75 | |||
76 | } |
||
77 |