Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function __construct( |
||
20 | int $status, |
||
21 | string $message, |
||
22 | array $errors = [], |
||
23 | array $headers = ['Content-Type' => 'application/json'], |
||
24 | bool $json = false |
||
25 | ) { |
||
26 | parent::__construct( |
||
27 | $this->format($status, $message, $errors), |
||
28 | $status, |
||
29 | $headers, |
||
30 | $json |
||
31 | ); |
||
43 |