Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
25 | { |
||
26 | /** @var EntryToObjectsService $entryToObjectsService */ |
||
27 | $entryToObjectsService = $serviceLocator->get(EntryToObjectsService::class); |
||
28 | |||
29 | $options = [ |
||
30 | 'entryToObjectsService' => $entryToObjectsService |
||
31 | ]; |
||
32 | |||
33 | return new EntryToObjectsControllerPlugin($options); |
||
34 | } |
||
35 | } |
||
36 |