1 | <?php |
||
20 | class ConfigProvider |
||
21 | { |
||
22 | /** |
||
23 | * Returns the configuration array |
||
24 | * |
||
25 | * To add a bit of a structure, each section is defined in a separate |
||
26 | * method which returns an array with its configuration. |
||
27 | * |
||
28 | * @return array |
||
29 | */ |
||
30 | public function __invoke() |
||
40 | |||
41 | /** |
||
42 | * Returns the container dependencies |
||
43 | * |
||
44 | * @return array |
||
45 | */ |
||
46 | public function getDependencies() |
||
56 | |||
57 | /** |
||
58 | * Returns the commands array |
||
59 | * |
||
60 | * @return array |
||
61 | */ |
||
62 | public function getCommands() |
||
69 | |||
70 | /** |
||
71 | * Returns the helpers array |
||
72 | * |
||
73 | * @return array |
||
74 | */ |
||
75 | public function getHelpers() |
||
81 | } |
||
82 |