| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | 2 | public function handle(ServerRequestInterface $request): ResponseInterface |
|
| 28 | { |
||
| 29 | 2 | $path = $request |
|
| 30 | 2 | ->getUri() |
|
| 31 | 2 | ->getPath(); |
|
| 32 | 2 | $response = $this->responseFactory->createResponse(Status::NOT_FOUND); |
|
| 33 | 2 | $response |
|
| 34 | 2 | ->getBody() |
|
| 35 | 2 | ->write("We were unable to find the page \"$path\"."); |
|
| 36 | 2 | return $response; |
|
| 37 | } |
||
| 39 |