updated routing to fix several issues.

This commit is contained in:
Taylor Otwell
2012-02-12 14:48:36 -06:00
parent 31cf44c374
commit 3a92facc76
31 changed files with 960 additions and 772 deletions

View File

@@ -1,13 +1,11 @@
<?php namespace Laravel;
use Closure;
<?php namespace Laravel; use Closure;
class Request {
/**
* The route handling the current request.
* All of the route instances handling the request.
*
* @var Routing\Route
* @var array
*/
public static $route;
@@ -139,7 +137,7 @@ class Request {
}
/**
* Get the route handling the current request.
* Get the main route handling the request.
*
* @return Route
*/