stub out commands method in console kernel

This commit is contained in:
Taylor Otwell
2016-05-09 11:16:31 -05:00
parent a97b9e0c7c
commit 59f2d49074

View File

@@ -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...');
// });
}
}