Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
15 | public function getConfig() |
||
16 | { |
||
17 | $provider = new ConfigProvider(); |
||
18 | |||
19 | return [ |
||
20 | 'pami_module' => [ |
||
21 | 'connection' => [], |
||
22 | 'client' => [], |
||
23 | ], |
||
24 | 'pami_module_factories' => [ |
||
25 | 'connection' => Service\ConnectionFactory::class, |
||
26 | 'client' => Service\ClientFactory::class, |
||
27 | ], |
||
28 | 'service_manager' => $provider->getDependencyConfig(), |
||
29 | ]; |
||
30 | } |
||
31 | } |
||
32 |