Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function __construct( |
||
30 | string $message = null, |
||
31 | string $description = null, |
||
32 | int $code = null, |
||
33 | \Throwable $previous = null |
||
34 | ) { |
||
35 | parent::__construct( |
||
36 | $message ?? 'Unauthorized', |
||
37 | $description ?? '', |
||
38 | $code ?? StatusCodeInterface::STATUS_UNAUTHORIZED, |
||
39 | StatusCodeInterface::STATUS_UNAUTHORIZED, |
||
40 | $previous |
||
41 | ); |
||
42 | } |
||
43 | } |
||
44 |