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