Make a few tweaks to providers.

This commit is contained in:
Taylor Otwell 2014-08-12 11:58:09 -05:00
parent ac9ce28597
commit 1e8ed2cdcc
5 changed files with 13 additions and 13 deletions

View File

@ -5,7 +5,7 @@
class AppServiceProvider extends ServiceProvider {
/**
* Bootstrap the application events.
* Bootstrap any necessary services.
*
* @return void
*/

View File

@ -5,16 +5,6 @@
class ArtisanServiceProvider extends ServiceProvider {
/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register the service provider.
*

View File

@ -5,7 +5,7 @@
class ErrorServiceProvider extends ServiceProvider {
/**
* Bootstrap the application events.
* Register any error handlers.
*
* @return void
*/

View File

@ -4,6 +4,16 @@
class EventServiceProvider extends ServiceProvider {
/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
{
//
}
/**
* Get the directories to scan for events.
*

View File

@ -5,7 +5,7 @@
class LogServiceProvider extends ServiceProvider {
/**
* Bootstrap the application events.
* Configure the application's logging facilities.
*
* @return void
*/