| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function __construct( |
||
| 21 | NodeValueInterface $value, |
||
| 22 | int $expectedIndex, |
||
| 23 | int $actualIndex, |
||
| 24 | Throwable $previous = null |
||
| 25 | ) { |
||
| 26 | $this->value = $value; |
||
| 27 | $this->expectedIndex = $expectedIndex; |
||
| 28 | $this->actualIndex = $actualIndex; |
||
| 29 | parent::__construct($this->buildMessage(), 0, $previous); |
||
| 30 | } |
||
| 52 |