removed unnecessary variable from route.

This commit is contained in:
Taylor Otwell 2011-10-05 18:35:34 -05:00
parent 71b0ab8b8d
commit 1cafc02d55
1 changed files with 2 additions and 2 deletions

View File

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