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

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()
{
//
}
}