| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function __construct( |
||
| 39 | string $message = null, |
||
| 40 | string $description = null, |
||
| 41 | int $code = null, |
||
| 42 | \Throwable $previous = null |
||
| 43 | ) { |
||
| 44 | parent::__construct( |
||
| 45 | $message ?? 'Method Not Allowed', |
||
| 46 | $description ?? '', |
||
| 47 | $code ?? StatusCodeInterface::STATUS_METHOD_NOT_ALLOWED, |
||
| 48 | StatusCodeInterface::STATUS_METHOD_NOT_ALLOWED, |
||
| 49 | $previous |
||
| 50 | ); |
||
| 51 | } |
||
| 52 | |||
| 77 |