1 | <?php |
||
14 | class Base implements Builder |
||
15 | { |
||
16 | /** |
||
17 | * Build instance of the route |
||
18 | * |
||
19 | * @param mixed $method Route method - GET, POST, etc... |
||
20 | * @param mixed $url route definition |
||
21 | * @param mixed $handler handler which will be executed if the url match |
||
22 | * the route |
||
23 | * |
||
24 | * @return \Kambo\Router\Route\Route\Base Base route |
||
25 | */ |
||
26 | public function build($method, $url, $handler) |
||
30 | } |
||
31 |