1 | <?php |
||
22 | class ConfigProvider |
||
23 | { |
||
24 | /** |
||
25 | * Returns the configuration array |
||
26 | * |
||
27 | * To add a bit of a structure, each section is defined in a separate |
||
28 | * method which returns an array with its configuration. |
||
29 | * |
||
30 | * @return array |
||
31 | */ |
||
32 | public function __invoke() |
||
43 | |||
44 | /** |
||
45 | * Returns the container dependencies |
||
46 | * |
||
47 | * @return array |
||
48 | */ |
||
49 | public function getDependencies() |
||
61 | |||
62 | /** |
||
63 | * Returns the queue dependencies |
||
64 | * |
||
65 | * @return array |
||
66 | */ |
||
67 | public function getSlmQueue() |
||
82 | |||
83 | /** |
||
84 | * Returns the commands array |
||
85 | * |
||
86 | * @return array |
||
87 | */ |
||
88 | public function getCommands() |
||
94 | |||
95 | /** |
||
96 | * Returns the helpers array |
||
97 | * |
||
98 | * @return array |
||
99 | */ |
||
100 | public function getHelpers() |
||
108 | } |
||
109 |