| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 47 | public function __construct(ServerRequestInterface $request, ResponseInterface $response, \Throwable $previous = null) |
||
| 48 | { |
||
| 49 | $this->request = $request; |
||
| 50 | |||
| 51 | $this->response = $response; |
||
| 52 | |||
| 53 | parent::__construct(\sprintf('%d %s', $response->getStatusCode(), $response->getReasonPhrase()), 0, $previous); |
||
| 54 | } |
||
| 72 |