1 | <?php |
||
13 | class Config |
||
14 | { |
||
15 | /** |
||
16 | * @var array |
||
17 | */ |
||
18 | private $config = []; |
||
19 | |||
20 | /** |
||
21 | * @Inject({"%config.public%"}) |
||
22 | * @param array $config |
||
23 | */ |
||
24 | 1 | public function __construct(array $config) |
|
28 | |||
29 | /** |
||
30 | * @return mixed[] |
||
31 | * @Route("/config/", name="config") |
||
32 | * @Guest |
||
33 | */ |
||
34 | 1 | public function config() : array |
|
38 | } |
||
39 |