| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function match(ServerRequestInterface $request): MatchingResult |
||
| 23 | { |
||
| 24 | $result = $this->urlMatcher->match($request); |
||
| 25 | if (!$result->isSuccess()) { |
||
| 26 | $this->isFallback = true; |
||
| 27 | // fallback match |
||
| 28 | // $this->currentRoute = ... |
||
| 29 | // $this->currentUrl = ... |
||
| 30 | } |
||
| 31 | return $result; |
||
| 32 | } |
||
| 44 |