| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 2 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 18 | public function __construct( | ||
| 19 | $operation, | ||
| 20 | $code = 0, | ||
| 21 | Throwable $previous = null | ||
| 22 | ) | ||
| 23 |     { | ||
| 24 | // @phpstan-ignore-next-line MissingFieldOperation will be thrown if op is not set | ||
| 25 |         parent::__construct('Unknown "op": ' . $operation->op, $code, $previous); | ||
| 26 | $this->operation = $operation; | ||
| 27 | } | ||
| 37 |