]> BookStack Code Mirror - bookstack/blobdiff - app/Theming/ThemeService.php
Fixed OIDC Logout
[bookstack] / app / Theming / ThemeService.php
index 7bc12c5d1561f5e1463b8ff52dea935b7b78e0e4..bb91643e308114b567119fed99349b7e6951f98e 100644 (file)
@@ -2,10 +2,9 @@
 
 namespace BookStack\Theming;
 
-use BookStack\Auth\Access\SocialAuthService;
+use BookStack\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]);
         });
     }