Merge pull request #4921 from SjorsO/master

[5.7] Change order of boot and register methods in service providers
This commit is contained in:
Taylor Otwell 2019-01-29 08:28:15 -06:00 committed by GitHub
commit 4ce439c21b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,16 +6,6 @@ use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register any application services.
*
@ -25,4 +15,14 @@ class AppServiceProvider extends ServiceProvider
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
}