3 namespace Oxbow\Console;
5 use Illuminate\Console\Scheduling\Schedule;
6 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
8 class Kernel extends ConsoleKernel
11 * The Artisan commands provided by your application.
15 protected $commands = [
16 \Oxbow\Console\Commands\Inspire::class,
20 * Define the application's command schedule.
22 * @param \Illuminate\Console\Scheduling\Schedule $schedule
25 protected function schedule(Schedule $schedule)
27 $schedule->command('inspire')