Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
18 | 3 | public function createService(ServiceLocatorInterface $serviceLocator) |
|
19 | { |
||
20 | 3 | $options = new ModuleOptions(); |
|
21 | |||
22 | 3 | $config = $serviceLocator->get('config'); |
|
23 | |||
24 | 3 | if (array_key_exists('abacaphiliac/zend-phpdotenv', $config)) { |
|
25 | 2 | $options->setFromArray($config['abacaphiliac/zend-phpdotenv']); |
|
26 | 2 | } |
|
27 | |||
28 | 3 | return $options; |
|
29 | } |
||
30 | |||
46 |