Commit 4131fbd4 authored by Taylor Otwell's avatar Taylor Otwell

Continuing to work on structure.

parent 0e0fd73b
...@@ -95,11 +95,17 @@ return array( ...@@ -95,11 +95,17 @@ return array(
'providers' => array( 'providers' => array(
/*
* Application Service Providers...
*/
'AppServiceProvider', 'AppServiceProvider',
'ArtisanServiceProvider', 'ArtisanServiceProvider',
'ErrorServiceProvider', 'ErrorServiceProvider',
'LogServiceProvider', 'LogServiceProvider',
/*
* Laravel Framework Service Providers...
*/
'Illuminate\Foundation\Providers\ArtisanServiceProvider', 'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider', 'Illuminate\Auth\AuthServiceProvider',
'Illuminate\Cache\CacheServiceProvider', 'Illuminate\Cache\CacheServiceProvider',
......
...@@ -21,6 +21,10 @@ class AppServiceProvider extends ServiceProvider { ...@@ -21,6 +21,10 @@ class AppServiceProvider extends ServiceProvider {
*/ */
public function register() 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.
// //
} }
......
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