| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function __construct( |
||
| 33 | string $message, |
||
| 34 | RequestInterface $request, |
||
| 35 | ResponseInterface $response, |
||
| 36 | ?\Exception $previous = null |
||
| 37 | ) { |
||
| 38 | parent::__construct($message, $response->getStatusCode(), $previous); |
||
| 39 | |||
| 40 | $this->request = $request; |
||
| 41 | $this->response = $response; |
||
| 42 | } |
||
| 60 |