Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function __construct( |
||
29 | string $message, |
||
30 | string $detail, |
||
31 | int $code, |
||
32 | \Psr\Http\Message\RequestInterface $request, |
||
33 | \Psr\Http\Message\ResponseInterface $response, |
||
34 | \Throwable $previous = null |
||
35 | ) { |
||
36 | $this->detail = $detail; |
||
37 | $this->request = $request; |
||
38 | $this->response = $response; |
||
39 | |||
40 | parent::__construct( |
||
41 | $message, |
||
42 | $code, |
||
43 | $previous |
||
44 | ); |
||
45 | } |
||
46 | |||
86 |