diff --git a/application/filters.php b/application/filters.php index 01538b34..2eb68c80 100644 --- a/application/filters.php +++ b/application/filters.php @@ -44,13 +44,13 @@ | */ - 'before' => function() + 'before' => function($method, $uri) { // Do stuff before every request to your application. }, - 'after' => function($response) + 'after' => function($response, $method, $uri) { // Do stuff after every request to your application. },