Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
38 | 5 | public function match($method, $url) |
|
39 | { |
||
40 | 5 | $request = new Request(); |
|
41 | 5 | $request->setMethod($method); |
|
42 | 5 | $request->setUri($url); |
|
43 | |||
44 | 5 | $routeMatch = $this->router->match($request); |
|
45 | |||
46 | 5 | return ($routeMatch instanceof RouteMatch) ? $routeMatch->getMatchedRouteName() : null; |
|
47 | } |
||
48 | } |
||
49 |