Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
22 | public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null) |
||
23 | { |
||
24 | $name = $this->getName(); |
||
25 | $objectManager = $container->get('doctrine.entitymanager.' . $name); |
||
26 | |||
27 | return new MappingCollector($objectManager->getMetadataFactory(), 'doctrine.mapping_collector.' . $name); |
||
28 | } |
||
29 | |||
44 |