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