Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | /** |
||
13 | * @var CompositeContextContainer |
||
14 | */ |
||
15 | private $container; |
||
16 | |||
17 | /** |
||
18 | * @var string The context that this container uses |
||
19 | */ |
||
20 | private $context; |
||
21 | public function __construct(CompositeContextContainer $parent, string $context) |
||
25 | } |
||
26 | |||
27 | public function get($id) |
||
30 | } |
||
31 | |||
32 | public function has($id) |
||
35 | } |
||
36 | } |
||
37 |