Make a few tweaks to providers.
This commit is contained in:
parent
ac9ce28597
commit
1e8ed2cdcc
|
@ -5,7 +5,7 @@
|
|||
class AppServiceProvider extends ServiceProvider {
|
||||
|
||||
/**
|
||||
* Bootstrap the application events.
|
||||
* Bootstrap any necessary services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
|
|
@ -5,16 +5,6 @@
|
|||
|
||||
class ArtisanServiceProvider extends ServiceProvider {
|
||||
|
||||
/**
|
||||
* Bootstrap the application events.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the service provider.
|
||||
*
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
class ErrorServiceProvider extends ServiceProvider {
|
||||
|
||||
/**
|
||||
* Bootstrap the application events.
|
||||
* Register any error handlers.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
|
|
@ -4,6 +4,16 @@
|
|||
|
||||
class EventServiceProvider extends ServiceProvider {
|
||||
|
||||
/**
|
||||
* Bootstrap the application events.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the directories to scan for events.
|
||||
*
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
class LogServiceProvider extends ServiceProvider {
|
||||
|
||||
/**
|
||||
* Bootstrap the application events.
|
||||
* Configure the application's logging facilities.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue