Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class Container extends ZapheusContainer implements PsrContainerInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var \Zapheus\Container\ContainerInterface |
||
19 | */ |
||
20 | protected $container; |
||
21 | |||
22 | /** |
||
23 | * Initializes the container instance. |
||
24 | * |
||
25 | * @param \Zapheus\Container\ContainerInterface $container |
||
26 | */ |
||
27 | 6 | public function __construct(ContainerInterface $container) |
|
32 |