<?phpnamespaceApp\Console;useIlluminate\Console\Scheduling\Schedule;useIlluminate\Foundation\Console\KernelasConsoleKernel;classKernelextendsConsoleKernel{/** * Define the application's command schedule. */protectedfunctionschedule(Schedule$schedule):void{// $schedule->command('inspire')->hourly();}/** * Register the commands for the application. */protectedfunctioncommands():void{$this->load(__DIR__.'/Commands');requirebase_path('routes/console.php');}}