| 1 | <?php |
||
| 8 | class InvoiceManagerFactory implements FactoryInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @param ContainerInterface $container |
||
| 12 | * @param string $requestedName |
||
| 13 | * @param array|null $options |
||
| 14 | * |
||
| 15 | * @return InvoiceManager |
||
| 16 | * @throws \Psr\Container\ContainerExceptionInterface |
||
| 17 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 18 | */ |
||
| 19 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
| 23 | } |
||
| 24 |