1 | <?php |
||
28 | class RouterFactory |
||
29 | { |
||
30 | /** |
||
31 | * @param AdaptorInterface $adaptor |
||
32 | * @param RouteCollectionInterface $collection |
||
33 | * @return Router |
||
34 | */ |
||
35 | public static function createRouter(AdaptorInterface $adaptor, RouteCollectionInterface $collection) |
||
39 | |||
40 | /** |
||
41 | * @param array $options |
||
42 | * @return Router |
||
43 | * @throws \Rs\Router\Exceptions\RouterException |
||
44 | */ |
||
45 | public static function createFastRouter(array $options = []) |
||
56 | } |
||
57 |