Total Complexity | 4 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class DropDefaultDomainFromQueryMiddleware implements MiddlewareInterface |
||
13 | { |
||
14 | private string $defaultDomain; |
||
15 | |||
16 | 5 | public function __construct(string $defaultDomain) |
|
17 | { |
||
18 | 5 | $this->defaultDomain = $defaultDomain; |
|
19 | } |
||
20 | |||
21 | 5 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
|
30 | } |
||
31 | } |
||
32 |