]> BookStack Code Mirror - bookstack/blobdiff - app/Theming/ThemeService.php
Updated minimum php version from 7.3 to 7.4
[bookstack] / app / Theming / ThemeService.php
index 7bc12c5d1561f5e1463b8ff52dea935b7b78e0e4..275dc9d8c94d421fa4af8467e98146e73fa4404b 100644 (file)
@@ -5,7 +5,6 @@ namespace BookStack\Theming;
 use BookStack\Auth\Access\SocialAuthService;
 use Illuminate\Console\Application;
 use Illuminate\Console\Application as Artisan;
-use Illuminate\Contracts\Console\Kernel;
 use Symfony\Component\Console\Command\Command;
 
 class ThemeService
@@ -52,7 +51,7 @@ class ThemeService
      */
     public function registerCommand(Command $command)
     {
-        Artisan::starting(function(Application $application) use ($command) {
+        Artisan::starting(function (Application $application) use ($command) {
             $application->addCommands([$command]);
         });
     }