1 | <?php |
||
11 | final class ContainerAdapterFactory |
||
12 | { |
||
13 | /** |
||
14 | * @var array |
||
15 | */ |
||
16 | private $config; |
||
17 | |||
18 | public function __construct(array $config) |
||
22 | |||
23 | /** |
||
24 | * @param object $container |
||
25 | * |
||
26 | * @throws UnknownContainerException |
||
27 | * @throws NotContainerAdapterException |
||
28 | * |
||
29 | * @return ContainerAdapter |
||
30 | */ |
||
31 | public function create($container) |
||
59 | } |
||
60 |