continued ioc refactoring.

This commit is contained in:
Taylor Otwell
2011-08-26 21:42:04 -05:00
parent fb3a0df0dd
commit 1e49001dfc
44 changed files with 1388 additions and 1046 deletions

View File

@@ -1,5 +1,8 @@
<?php
use Laravel\Application;
use Laravel\Response;
return array(
/*
@@ -42,13 +45,13 @@ return array(
|
*/
'before' => function(Laravel\Request $request)
'before' => function(Application $application)
{
// Do stuff before every request to your application.
},
'after' => function(Laravel\Request $request, Laravel\Response $response)
'after' => function(Application $application, Response $response)
{
// Do stuff after every request to your application.
},