1 | <?php |
||
8 | class ClientFactory extends AbstractFactory |
||
9 | { |
||
10 | /** |
||
11 | * @param ContainerInterface $container |
||
12 | * @return Client |
||
13 | * @throws \Interop\Container\Exception\NotFoundException |
||
14 | * @throws \Interop\Container\Exception\ContainerException |
||
15 | */ |
||
16 | public function __invoke(ContainerInterface $container) |
||
35 | } |
||
36 |