Browse Source

Added method and URI to before filters.

Taylor Otwell 13 years ago
parent
commit
8adb919489
1 changed files with 2 additions and 2 deletions
  1. 2 2
      application/filters.php

+ 2 - 2
application/filters.php

@@ -44,13 +44,13 @@ return array(
 	|
 	*/
 
-	'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.
 	},