| 1 | <?php |
||
| 6 | class LosLogFactory implements FactoryInterface |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @param \Interop\Container\ContainerInterface $container |
||
| 10 | * @param string $requestedName |
||
| 11 | * @param array|null $options |
||
| 12 | * @return LosLog|object |
||
| 13 | * @throws Exception\InvalidArgumentException |
||
| 14 | * @throws \Psr\Container\ContainerExceptionInterface |
||
| 15 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 16 | */ |
||
| 17 | public function __invoke(\Interop\Container\ContainerInterface $container, $requestedName, array $options = null) |
||
| 29 | } |
||
| 30 |