Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
29 | final class HomeController implements RequestHandlerInterface |
||
30 | { |
||
31 | use ContainerAwareTrait; |
||
32 | use ResponseFactoryAwareTrait; |
||
33 | |||
34 | /** |
||
35 | * {@inheritDoc} |
||
36 | * |
||
37 | * @param ServerRequestInterface $request |
||
38 | * |
||
39 | * @return ResponseInterface |
||
40 | */ |
||
41 | 1 | public function handle(ServerRequestInterface $request) : ResponseInterface |
|
46 |