| 1 | <?php |
||
| 12 | class ClientFactory extends AbstractFactory |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param ContainerInterface $container |
||
| 16 | * |
||
| 17 | * @return Client |
||
| 18 | * |
||
| 19 | * @throws \Interop\Container\Exception\NotFoundException |
||
| 20 | * @throws \Interop\Container\Exception\ContainerException |
||
| 21 | */ |
||
| 22 | public function __invoke(ContainerInterface $container) |
||
| 47 | } |
||
| 48 |