1 | <?php |
||
15 | class RouteMatcher |
||
16 | { |
||
17 | /** |
||
18 | * @var RouteStackInterface |
||
19 | */ |
||
20 | private $router; |
||
21 | |||
22 | /** |
||
23 | * RouteMatcher constructor. |
||
24 | * |
||
25 | * @param RouteStackInterface $router |
||
26 | */ |
||
27 | 11 | public function __construct(RouteStackInterface $router) |
|
31 | |||
32 | /** |
||
33 | * @param string $method |
||
34 | * @param string $url |
||
35 | * |
||
36 | * @return null|string |
||
37 | */ |
||
38 | 5 | public function match($method, $url) |
|
48 | } |
||
49 |