| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class FilteredContainer implements ContainerInterface |
||
| 18 | { |
||
| 19 | /** @var FilteredContainerInterface */ |
||
| 20 | private $container; |
||
| 21 | /** @var ItemInterface[] */ |
||
| 22 | private $items; |
||
| 23 | |||
| 24 | public function __construct(FilteredContainerInterface $container) |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return ItemInterface[] |
||
| 31 | */ |
||
| 32 | public function getItems(): array |
||
| 40 | } |
||
| 41 | |||
| 42 | public function get(string $name): ItemInterface |
||
| 47 |