Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | 6 | public function __construct( |
|
18 | ValueListInterface $leftValues, |
||
19 | ValueListInterface $rightValues, |
||
20 | Throwable $previous = null |
||
21 | ) { |
||
22 | 6 | $this->leftValues = $leftValues; |
|
23 | 6 | $this->rightValues = $rightValues; |
|
24 | 6 | parent::__construct("Index map match failed", 0, $previous); |
|
25 | 6 | } |
|
37 |