refactoring the routing engine.

This commit is contained in:
Taylor Otwell
2011-09-04 22:40:33 -05:00
parent 3e874867b8
commit d35e2abd77
8 changed files with 243 additions and 217 deletions

View File

@@ -45,13 +45,13 @@ return array(
|
*/
'before' => function(Application $application)
'before' => function()
{
// Do stuff before every request to your application.
},
'after' => function(Application $application, Response $response)
'after' => function(Response $response)
{
// Do stuff after every request to your application.
},