Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | 4 | public function __construct( |
|
24 | int $index, |
||
25 | PointerQueryInterface $pathPointer, |
||
26 | NodeValueInterface $value, |
||
27 | ComparatorInterface $equalComparator |
||
28 | ) { |
||
29 | 4 | $this->index = $index; |
|
30 | 4 | $this->pathPointer = $pathPointer; |
|
31 | 4 | $this->value = $value; |
|
32 | 4 | $this->equalComparator = $equalComparator; |
|
33 | 4 | } |
|
54 |