removed unnecessary variable from route.

This commit is contained in:
Taylor Otwell
2011-10-05 18:35:34 -05:00
parent 71b0ab8b8d
commit 1cafc02d55

View File

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