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