Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | final class EntityManagerContainerFactory extends AbstractFactory |
||
18 | { |
||
19 | /** |
||
20 | * @param ContainerInterface $container |
||
21 | * @param string $requestedName |
||
22 | * @param array|null $options |
||
23 | * |
||
24 | * @return EntityManagerContainer |
||
25 | * |
||
26 | * @noinspection PhpMissingParamTypeInspection |
||
27 | * |
||
28 | * @throws InvalidArgumentException |
||
29 | * @throws ServiceNotFoundException |
||
30 | */ |
||
31 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null): EntityManagerContainer |
||
38 |