| 1 | <?php |
||
| 10 | class RequestMatcher |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ServerRequestInterface |
||
| 14 | */ |
||
| 15 | private static $request; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var Map |
||
| 19 | */ |
||
| 20 | private static $routerMap; |
||
| 21 | |||
| 22 | public static function setRequest(ServerRequestInterface $request) |
||
| 26 | |||
| 27 | public static function setRouterMap(Map $routerMap) |
||
| 31 | |||
| 32 | public static function getRequest() |
||
| 36 | |||
| 37 | public static function getUrlNameMatching() |
||
| 41 | |||
| 42 | public static function getPatternedUrl() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return ProcInterface |
||
| 49 | */ |
||
| 50 | public static function getControllerProc() |
||
| 54 | |||
| 55 | private static function getControllerMatchingResult() |
||
| 59 | } |
||
| 60 |