]> BookStack Code Mirror - bookstack/blobdiff - app/App/Providers/EventServiceProvider.php
Tests: Updated comment test to account for new editor usage
[bookstack] / app / App / Providers / EventServiceProvider.php
index 4ec9facdfd7b82c793f3a57257327e604f009f85..34ab7cfefea83e4d6926642d0c32ff77effdf4f1 100644 (file)
@@ -29,21 +29,25 @@ class EventServiceProvider extends ServiceProvider
 
     /**
      * Register any events for your application.
-     *
-     * @return void
      */
-    public function boot()
+    public function boot(): void
     {
         //
     }
 
     /**
      * Determine if events and listeners should be automatically discovered.
-     *
-     * @return bool
      */
-    public function shouldDiscoverEvents()
+    public function shouldDiscoverEvents(): bool
     {
         return false;
     }
+
+    /**
+     * Overrides the registration of Laravel's default email verification system
+     */
+    protected function configureEmailVerification(): void
+    {
+        //
+    }
 }