| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
| 29 | { |
||
| 30 | /** @var DoctrineObjectManagerInterface $doctrineObjectManager */ |
||
| 31 | $doctrineObjectManager = $serviceLocator->get(DoctrineObjectManagerInterface::class); |
||
| 32 | |||
| 33 | /** @var ModuleOptionsPluginManagerInterface $moduleOptionsPluginManager */ |
||
| 34 | $moduleOptionsPluginManager = $serviceLocator->get(ModuleOptionsPluginManagerInterface::class); |
||
| 35 | |||
| 36 | /** @var EntityManagerInterface $entityManager */ |
||
| 37 | $entityManager = $serviceLocator->get(EntityManagerInterface::class); |
||
| 38 | |||
| 39 | return new EntityMapBuilder($doctrineObjectManager, $moduleOptionsPluginManager, $entityManager); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |