Commit 7f3f1f34 authored by Taylor Otwell's avatar Taylor Otwell

global after filter receives response object.

parent 1098d50a
...@@ -96,7 +96,7 @@ Route::filter('before', function() ...@@ -96,7 +96,7 @@ Route::filter('before', function()
// Do stuff before every request to your application... // 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... // Do stuff after every request to your application...
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment