working on the route class.
This commit is contained in:
@@ -58,7 +58,7 @@ class Route {
|
||||
// Extract each URI from the route key. Since the route key has the request
|
||||
// method, we will extract that from the string. If the URI points to the
|
||||
// root of the application, a single forward slash will be returned.
|
||||
$uris = array_get($action, 'handles', array());
|
||||
$uris = array_get($action, 'handles', array($key));
|
||||
|
||||
$this->uris = array_map(array($this, 'extract'), $uris);
|
||||
|
||||
|
||||
@@ -200,8 +200,6 @@ class Router {
|
||||
|
||||
$action = array('uses' => Bundle::prefix($bundle).'home@index');
|
||||
|
||||
$action['handles'] = array($destination);
|
||||
|
||||
return new Route($method.' '.$uri, $action);
|
||||
}
|
||||
|
||||
@@ -245,8 +243,6 @@ class Router {
|
||||
|
||||
$action = array('uses' => $prefix.$controller.'@'.$method);
|
||||
|
||||
$action['handles'] = array($destination);
|
||||
|
||||
return new Route($destination, $action, $segments);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user