| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function __construct(int $index, $operationCode, Throwable $previous = null) |
||
| 17 | { |
||
| 18 | $this->index = $index; |
||
| 19 | $this->operationCode = $operationCode; |
||
| 20 | parent::__construct( |
||
| 21 | "Operation #{$this->index}: operation code in 'op' property must be a string", |
||
| 22 | 0, |
||
| 23 | $previous |
||
| 24 | ); |
||
| 37 |