Example #1
0
 function get($adress, $closure = false)
 {
     $route = new Route();
     $route->map($adress, $closure);
     $route->method = array('GET');
     $route->initiateAutoFind($this->_current_include_directory);
     $this->routes[] = $route;
     return $route;
 }