refactoring and adding more dependency injection through ioc container.

This commit is contained in:
Taylor Otwell
2011-08-24 22:51:32 -05:00
parent 99adf09ac7
commit 6a8aafc259
46 changed files with 1039 additions and 1276 deletions

View File

@@ -56,7 +56,7 @@ return array(
'auth' => function()
{
return ( ! Auth::check()) ? Redirect::to_login() : null;
return ( ! Auth::make()->check()) ? Redirect::to_login() : null;
},