Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class ConfigProvider |
||
18 | { |
||
19 | /** |
||
20 | * Returns the configuration array |
||
21 | * |
||
22 | * To add a bit of a structure, each section is defined in a separate |
||
23 | * method which returns an array with its configuration. |
||
24 | * |
||
25 | * @return array |
||
26 | */ |
||
27 | public function __invoke() |
||
34 | ], |
||
35 | ]; |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Returns the container dependencies |
||
40 | * |
||
41 | * @return array |
||
42 | */ |
||
43 | public function getDependencies() |
||
53 |