Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class ConfigProvider |
||
13 | { |
||
14 | /** |
||
15 | * Returns the configuration array |
||
16 | * |
||
17 | * To add a bit of a structure, each section is defined in a separate |
||
18 | * method which returns an array with its configuration. |
||
19 | * |
||
20 | * @return array |
||
21 | */ |
||
22 | public function __invoke() : array |
||
26 | ]; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Returns the container dependencies |
||
31 | * |
||
32 | * @return array |
||
33 | */ |
||
34 | public function getDependencies() : array |
||
50 |