| Total Complexity | 6 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 15 | class OrderedContainer implements ContainerInterface |
||
| 16 | { |
||
| 17 | /** @var ContainerInterface */ |
||
| 18 | private $container; |
||
| 19 | /** @var ItemInterface[] */ |
||
| 20 | private $items; |
||
| 21 | |||
| 22 | public function __construct(ContainerInterface $container) |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return ItemInterface[] |
||
| 29 | */ |
||
| 30 | public function getItems(): array |
||
| 45 | } |
||
| 46 | |||
| 47 | public function get(string $identifier): ItemInterface |
||
| 52 |