From 7f3f1f3481beafea0f14fa5b9df459173398c5fe Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 20 Feb 2012 09:20:14 -0600 Subject: [PATCH] global after filter receives response object. --- application/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/routes.php b/application/routes.php index 71efe3c9..80e383b2 100644 --- a/application/routes.php +++ b/application/routes.php @@ -96,7 +96,7 @@ // Do stuff before every request to your application... }); -Route::filter('after', function() +Route::filter('after', function($response) { // Do stuff after every request to your application... });