| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function __construct( |
||
| 17 | string $message = 'Not allowed', |
||
| 18 | string $severity = 'warning', |
||
| 19 | int $statusCode = 403, |
||
| 20 | array $headers = [], |
||
| 21 | int $code = 0, |
||
| 22 | Throwable $previous = null |
||
| 23 | ) { |
||
| 24 | $this->severity = $severity; |
||
| 25 | parent::__construct($statusCode, $message, $previous, $headers, $code); |
||
| 26 | } |
||
| 33 |