diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 71c519d3..aaf760e0 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -27,4 +27,16 @@ protected function schedule(Schedule $schedule) // $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...'); + // }); + } }