Browse Source

stub out commands method in console kernel

Taylor Otwell 8 years ago
parent
commit
59f2d49074
1 changed files with 12 additions and 0 deletions
  1. 12 0
      app/Console/Kernel.php

+ 12 - 0
app/Console/Kernel.php

@@ -27,4 +27,16 @@ class Kernel extends ConsoleKernel
         // $schedule->command('inspire')
         //          ->hourly();
     }
+
+    /**
+     * Register the Closure based commands for the application.
+     *
+     * @return void
+     */
+    protected function commands()
+    {
+        // $this->command('build {project}', function ($project) {
+        //     $this->info('Building project...');
+        // });
+    }
 }