| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function __construct( |
||
| 23 | $operation, |
||
| 24 | $actualValue, |
||
| 25 | $code = 0, |
||
| 26 | ?Throwable $previous = null |
||
| 27 | ) |
||
| 28 | { |
||
| 29 | parent::__construct('Test operation ' . json_encode($operation, JSON_UNESCAPED_SLASHES) |
||
| 30 | . ' failed: ' . json_encode($actualValue), $code, $previous); |
||
| 31 | $this->operation = $operation; |
||
| 32 | $this->actualValue = $actualValue; |
||
| 33 | } |
||
| 51 |