Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | class ProductManagerFactory implements FactoryInterface |
||
16 | { |
||
17 | /** |
||
18 | * @param ContainerInterface $container |
||
19 | * @param string $requestedName |
||
20 | * @param array|null $options |
||
21 | * |
||
22 | * @return ProductManager |
||
23 | * @throws ContainerExceptionInterface |
||
24 | * @throws NotFoundExceptionInterface |
||
25 | */ |
||
26 | 1 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) : ProductManagerInterface |
|
31 |