| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class UrlMatcherInterfaceProxy implements UrlMatcherInterface |
||
| 12 | { |
||
| 13 | 1 | public function __construct( |
|
| 14 | private UrlMatcherInterface $urlMatcher, |
||
| 15 | private RouterCollector $routerCollector |
||
| 16 | ) { |
||
| 17 | 1 | } |
|
| 18 | |||
| 19 | 1 | public function match(ServerRequestInterface $request): MatchingResult |
|
| 26 | } |
||
| 27 | } |
||
| 28 |