working on the route class.

This commit is contained in:
Taylor Otwell
2012-01-18 12:44:00 -06:00
parent bfc04e283b
commit eb193c1d12
3 changed files with 3 additions and 6 deletions

View File

@@ -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);
}
}