]> BookStack Code Mirror - bookstack/blobdiff - app/Console/Kernel.php
fix markdown editor resizing with long strings
[bookstack] / app / Console / Kernel.php
index f3b9795e82211609f79e112e502aa2f0261d5b25..e75d93801632b972df5787dafe8094cea2fbc943 100644 (file)
@@ -1,6 +1,4 @@
-<?php
-
-namespace Oxbow\Console;
+<?php namespace BookStack\Console;
 
 use Illuminate\Console\Scheduling\Schedule;
 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
@@ -13,7 +11,7 @@ class Kernel extends ConsoleKernel
      * @var array
      */
     protected $commands = [
-        \Oxbow\Console\Commands\Inspire::class,
+        //
     ];
 
     /**
@@ -24,7 +22,16 @@ class Kernel extends ConsoleKernel
      */
     protected function schedule(Schedule $schedule)
     {
-        $schedule->command('inspire')
-                 ->hourly();
+        //
+    }
+
+    /**
+     * Register the commands for the application.
+     *
+     * @return void
+     */
+    protected function commands()
+    {
+        $this->load(__DIR__.'/Commands');
     }
 }