| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 17 | final class NotFoundMiddleware implements MiddlewareInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @see MiddlewareInterface::process |
||
| 21 | * |
||
| 22 | * @param ServerRequestInterface $request |
||
| 23 | * @param RequestHandlerInterface $next |
||
| 24 | * @return ResponseInterface |
||
| 25 | */ |
||
| 26 | 1 | public function process(ServerRequestInterface $request, RequestHandlerInterface $next): ResponseInterface |
|
| 37 |