| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function __construct(RequestInterface $request, ResponseInterface $response, int $statusCode) |
||
| 28 | { |
||
| 29 | $this->request = $request; |
||
| 30 | $this->response = $response; |
||
| 31 | $this->statusCode = $statusCode; |
||
| 32 | |||
| 33 | parent::__construct(sprintf('Request failed with status code %d', $this->statusCode)); |
||
| 34 | } |
||
| 51 |