From 1cafc02d55d636d246d522ff8deec0af4318d7ab Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 5 Oct 2011 18:35:34 -0500 Subject: [PATCH] removed unnecessary variable from route. --- application/routes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/routes.php b/application/routes.php index 0262a25a..56ea31be 100644 --- a/application/routes.php +++ b/application/routes.php @@ -37,9 +37,9 @@ | */ - 'GET /' => function($application) + 'GET /' => function() { return View::make('home.index'); }, -); \ No newline at end of file +);