Remove log service provider since it is part of Bootstrap process.

This commit is contained in:
Taylor Otwell
2014-10-21 21:57:39 -05:00
parent 9aed9debca
commit c10ad6269e
4 changed files with 9 additions and 40 deletions

View File

@@ -4,6 +4,15 @@ use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvi
class EventServiceProvider extends ServiceProvider {
/**
* The classes to scan for event annotations.
*
* @var array
*/
protected $scan = [
//
];
/**
* The event handler mappings for the application.
*
@@ -15,13 +24,4 @@ class EventServiceProvider extends ServiceProvider {
],
];
/**
* The classes to scan for event annotations.
*
* @var array
*/
protected $scan = [
//
];
}