Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | 1 | public function __construct(StringListInterface ...$items) |
|
23 | { |
||
24 | 1 | $values = []; |
|
25 | 1 | foreach ($items as $item) { |
|
26 | /** @noinspection SlowArrayOperationsInLoopInspection */ |
||
27 | 1 | $values = array_merge($values, iterator_to_array($item->all())); |
|
28 | } |
||
29 | 1 | $this->values = $values; |
|
30 | 1 | } |
|
31 | |||
41 |