Browse Source

pass request into route closures.

Taylor Otwell 13 years ago
parent
commit
a045496684
2 changed files with 3 additions and 1 deletions
  1. 1 1
      application/routes.php
  2. 2 0
      laravel/routing/handler.php

+ 1 - 1
application/routes.php

@@ -37,7 +37,7 @@ return array(
 	|
 	*/
 
-	'GET /' => function()
+	'GET /' => function($request)
 	{
 		return View::make('home.index');
 	},

+ 2 - 0
laravel/routing/handler.php

@@ -95,6 +95,8 @@ class Handler {
 	 */
 	protected function handle_closure(Route $route, Closure $closure)
 	{
+		array_unshift($route->parameters, $this->request);
+
 		$response = call_user_func_array($closure, $route->parameters);
 
 		if (is_array($response))