Commit 8adb9194 authored by Taylor Otwell's avatar Taylor Otwell

Added method and URI to before filters.

parent 762a0e41
......@@ -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.
},
......
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