change order of boot and register method

This commit is contained in:
Sjors 2019-01-29 14:40:47 +01:00
parent ab1e9f8b6a
commit e0ae7914b9
1 changed files with 10 additions and 10 deletions

View File

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