Browse Source

removed unnecessary variable from route.

Taylor Otwell 13 years ago
parent
commit
1cafc02d55
1 changed files with 2 additions and 2 deletions
  1. 2 2
      application/routes.php

+ 2 - 2
application/routes.php

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