1 | <?php |
||
19 | class ConfigProvider |
||
20 | { |
||
21 | /** |
||
22 | * Returns the configuration array |
||
23 | * |
||
24 | * To add a bit of a structure, each section is defined in a separate |
||
25 | * method which returns an array with its configuration. |
||
26 | * |
||
27 | * @return array |
||
28 | */ |
||
29 | public function __invoke() |
||
36 | |||
37 | /** |
||
38 | * Returns the container dependencies |
||
39 | * |
||
40 | * @return array |
||
41 | */ |
||
42 | public function getDependencies() |
||
52 | |||
53 | /** |
||
54 | * Returns the queue dependencies |
||
55 | * |
||
56 | * @return array |
||
57 | */ |
||
58 | public function getSlmQueue() |
||
75 | } |
||
76 |