Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | final class NotFoundHandler implements RequestHandlerInterface |
||
17 | { |
||
18 | 10 | public function __construct(private ResponseFactoryInterface $responseFactory) |
|
20 | 10 | } |
|
21 | |||
22 | /** |
||
23 | * Handles a request and produces a response. |
||
24 | * |
||
25 | * May call other collaborating code to generate the response. |
||
26 | */ |
||
27 | 2 | public function handle(ServerRequestInterface $request): ResponseInterface |
|
39 |