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