Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 33.33% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | abstract class AbstractContainerAdapter implements ContainerAdapterInterface |
||
9 | { |
||
10 | protected ContainerInterface $container; |
||
11 | |||
12 | 3 | public function get(string $id) |
|
13 | { |
||
14 | 3 | return $this->container->get($id); |
|
15 | } |
||
16 | |||
17 | public function has(string $id): bool |
||
18 | { |
||
19 | return $this->container->has($id); |
||
20 | } |
||
21 | |||
22 | public function getAdaptedContainer(): ContainerInterface |
||
25 | } |
||
26 | } |
||
27 |