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 | public function __construct(RouteStackInterface $router) |
||
31 | |||
32 | /** |
||
33 | * @param string $method |
||
34 | * @param string $url |
||
35 | * @return null|string |
||
36 | */ |
||
37 | public function match($method, $url) |
||
46 | } |