Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
6 | final class EvaluatedValueListBuilder |
||
7 | { |
||
8 | |||
9 | private $indexMap = []; |
||
10 | |||
11 | private $results = []; |
||
12 | |||
13 | public function addResult(bool $result, int $outerIndex): self |
||
14 | { |
||
15 | $this->indexMap[] = $outerIndex; |
||
16 | $this->results[] = $result; |
||
17 | |||
18 | return $this; |
||
19 | } |
||
20 | |||
21 | public function build(): EvaluatedValueListInterface |
||
24 | } |
||
25 | } |
||
26 |