From 59f2d49074a76d8863cd9aecfb23edf1c1651fcc Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 9 May 2016 11:16:31 -0500 Subject: [PATCH] stub out commands method in console kernel --- app/Console/Kernel.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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...'); + // }); + } }