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