Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | final class NotFoundHandler implements RequestHandlerInterface |
||
15 | { |
||
16 | private DataResponseFormatterInterface $formatter; |
||
17 | private DataResponseFactoryInterface $dataResponseFactory; |
||
18 | |||
19 | 14 | public function __construct(DataResponseFormatterInterface $formatter, DataResponseFactoryInterface $dataResponseFactory) |
|
23 | 14 | } |
|
24 | |||
25 | 1 | public function handle(ServerRequestInterface $request): ResponseInterface |
|
32 |