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