Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function __construct( |
||
22 | int $index, |
||
23 | NodeValueInterface $document, |
||
24 | string $path, |
||
25 | NodeValueInterface $expectedValue, |
||
26 | Throwable $previous = null |
||
27 | ) { |
||
28 | $this->index = $index; |
||
29 | $this->document = $document; |
||
30 | $this->path = $path; |
||
31 | $this->expectedValue = $expectedValue; |
||
32 | parent::__construct( |
||
33 | "Operation #{$this->index}: test operation failed at '{$path}'", |
||
34 | 0, |
||
35 | $previous |
||
36 | ); |
||
59 |