Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
14 | 5 | public function __construct(ReferenceInterface ...$references) |
|
15 | { |
||
16 | 5 | $listSize = count($references); |
|
17 | 5 | $this->listedReferences = []; |
|
18 | 5 | foreach ($references as $index => $reference) { |
|
19 | 3 | $this->listedReferences[] = new ListedReference($reference, $index + 1 == $listSize); |
|
20 | } |
||
31 |