Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
25 | 40 | public function __construct(array $items) |
|
26 | { |
||
27 | 40 | foreach ($items as $item) { |
|
28 | 40 | if (!$item instanceof WzItemInterface) { |
|
29 | 5 | throw new InvalidArgumentException(sprintf( |
|
30 | 5 | 'Only `%s` objects are allowed.', |
|
31 | 4 | WzItemInterface::class |
|
32 | 1 | )); |
|
33 | } |
||
34 | |||
35 | 35 | $this->items[$item->getId()] = $item; |
|
36 | 7 | } |
|
37 | 35 | } |
|
38 | |||
80 |