Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | final class UrlMatcherInterfaceProxy implements UrlMatcherInterface |
||
12 | { |
||
13 | private UrlMatcherInterface $urlMatcher; |
||
14 | private RouterCollector $routerCollector; |
||
15 | |||
16 | 1 | public function __construct(UrlMatcherInterface $urlMatcher, RouterCollector $routerCollector) |
|
17 | { |
||
18 | 1 | $this->urlMatcher = $urlMatcher; |
|
19 | 1 | $this->routerCollector = $routerCollector; |
|
20 | } |
||
21 | |||
22 | 1 | public function match(ServerRequestInterface $request): MatchingResult |
|
29 | } |
||
30 | } |
||
31 |