X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/cdaad2f40ec96fd98e6320638854c69b90bfe847..refs/pull/5280/head:/app/Console/Kernel.php diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 02c8c00e6..f49be1d63 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -2,23 +2,11 @@ namespace BookStack\Console; -use BookStack\Facades\Theme; -use BookStack\Theming\ThemeService; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; -use Symfony\Component\Console\Command\Command; class Kernel extends ConsoleKernel { - /** - * The Artisan commands provided by your application. - * - * @var array - */ - protected $commands = [ - // - ]; - /** * Define the application's command schedule. * @@ -38,13 +26,6 @@ class Kernel extends ConsoleKernel */ protected function commands() { - // Default framework command loading from 'Commands' directory $this->load(__DIR__ . '/Commands'); - - // Load any user commands that have been registered via the theme system. - $themeService = $this->app->make(ThemeService::class); - foreach ($themeService->getRegisteredCommands() as $command) { - $this->registerCommand($command); - } } }