Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
37 | { |
||
38 | |||
39 | /** @var ModuleOptions $moduleOptions */ |
||
40 | $moduleOptions = $serviceLocator->get(ModuleOptions::class); |
||
41 | |||
42 | $options = [ |
||
43 | 'serviceLocator' => $serviceLocator, |
||
44 | 'moduleOptions' => $moduleOptions |
||
45 | ]; |
||
46 | |||
47 | return new Workflow($options); |
||
48 | } |
||
49 | } |
||
50 |