Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class WebControllerService |
||
14 | { |
||
15 | private ResponseFactoryInterface $responseFactory; |
||
16 | private UrlGeneratorInterface $urlGenerator; |
||
17 | |||
18 | public function __construct(ResponseFactoryInterface $responseFactory, UrlGeneratorInterface $urlGenerator) |
||
22 | } |
||
23 | |||
24 | public function getRedirectResponse(string $url): ResponseInterface |
||
29 | } |
||
30 | |||
31 | public function getNotFoundResponse(): ResponseInterface |
||
37 |