| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | 6 | public function __construct(int $index, string $property, Throwable $previous = null) |
|
| 17 | { |
||
| 18 | 6 | $this->index = $index; |
|
| 19 | 6 | $this->property = $property; |
|
| 20 | 6 | parent::__construct( |
|
| 21 | 6 | "Operation #{$this->index}: JSON Pointer not found in '{$this->property}' property", |
|
| 22 | 6 | 0, |
|
| 23 | $previous |
||
| 24 | ); |
||
| 37 |