Browse Source

change order of boot and register method

Sjors 5 years ago
parent
commit
e0ae7914b9
1 changed files with 4 additions and 4 deletions
  1. 4 4
      app/Providers/AppServiceProvider.php

+ 4 - 4
app/Providers/AppServiceProvider.php

@@ -7,21 +7,21 @@ use Illuminate\Support\ServiceProvider;
 class AppServiceProvider extends ServiceProvider
 {
     /**
-     * Bootstrap any application services.
+     * Register any application services.
      *
      * @return void
      */
-    public function boot()
+    public function register()
     {
         //
     }
 
     /**
-     * Register any application services.
+     * Bootstrap any application services.
      *
      * @return void
      */
-    public function register()
+    public function boot()
     {
         //
     }