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 $operationCode, Throwable $previous = null) |
|
17 | { |
||
18 | 6 | $this->index = $index; |
|
19 | 6 | $this->operationCode = $operationCode; |
|
20 | 6 | parent::__construct( |
|
21 | 6 | "Operation #{$this->index}: unknown operation code '{$this->operationCode}'", |
|
22 | 6 | 0, |
|
23 | $previous |
||
24 | ); |
||
37 |