Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function __construct( |
||
13 | string $missingField, |
||
14 | object $operationObject, |
||
15 | string $message = '', |
||
16 | int $code = 0, |
||
17 | Throwable $previous = null |
||
18 | ) |
||
19 | { |
||
20 | parent::__construct($message, $code, $previous); |
||
21 | $this->missingField = $missingField; |
||
22 | $this->operationObject = $operationObject; |
||
23 | } |
||
35 |