stub out commands method in console kernel
This commit is contained in:
parent
a97b9e0c7c
commit
59f2d49074
|
@ -27,4 +27,16 @@ protected function schedule(Schedule $schedule)
|
||||||
// $schedule->command('inspire')
|
// $schedule->command('inspire')
|
||||||
// ->hourly();
|
// ->hourly();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register the Closure based commands for the application.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
protected function commands()
|
||||||
|
{
|
||||||
|
// $this->command('build {project}', function ($project) {
|
||||||
|
// $this->info('Building project...');
|
||||||
|
// });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue