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