| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | 1 | public function __construct( |
|
| 42 | int $exitCode, |
||
| 43 | string $message = null, |
||
| 44 | array $headers = [], |
||
| 45 | \Exception $previous = null, |
||
| 46 | ?int $code = 0 |
||
| 47 | ) { |
||
| 48 | 1 | $this->exitCode = $exitCode; |
|
| 49 | 1 | $this->headers = $headers; |
|
| 50 | |||
| 51 | 1 | parent::__construct($message, $code, $previous); |
|
| 52 | 1 | } |
|
| 80 |