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