Browse Source

Disable demonstration command
If the purpose of the command is to demonstrate, does not become nescessário leave it enabled by default.

Vinicius Reis 10 years ago
parent
commit
8f6a6d8df0
1 changed files with 3 additions and 3 deletions
  1. 3 3
      app/Console/Kernel.php

+ 3 - 3
app/Console/Kernel.php

@@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel
      * @var array
      * @var array
      */
      */
     protected $commands = [
     protected $commands = [
-        Commands\Inspire::class,
+        // Commands\Inspire::class,
     ];
     ];
 
 
     /**
     /**
@@ -24,7 +24,7 @@ class Kernel extends ConsoleKernel
      */
      */
     protected function schedule(Schedule $schedule)
     protected function schedule(Schedule $schedule)
     {
     {
-        $schedule->command('inspire')
-                 ->hourly();
+        // $schedule->command('inspire')
+        //          ->hourly();
     }
     }
 }
 }