Continuing to work on structure.

This commit is contained in:
Taylor Otwell 2014-07-31 22:59:25 -05:00
parent 0e0fd73b43
commit 4131fbd4dc
2 changed files with 10 additions and 0 deletions

View File

@ -95,11 +95,17 @@
'providers' => array(
/*
* Application Service Providers...
*/
'AppServiceProvider',
'ArtisanServiceProvider',
'ErrorServiceProvider',
'LogServiceProvider',
/*
* Laravel Framework Service Providers...
*/
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider',
'Illuminate\Cache\CacheServiceProvider',

View File

@ -21,6 +21,10 @@ public function boot()
*/
public function register()
{
// This service provider is a convenient place to register your services
// in the IoC container. If you wish, you may make additional methods
// or service providers to keep the code more focused and granular.
//
}