command('inspire')->hourly(); //此处相当于规定同意的定时执行时间,如每天凌晨执行以下任务 $schedule->command('chenglu:clear_limit')->daily()->description('每天凌晨自动清空用户限制'); $schedule->command('chenglu:vip_out_time')->everyMinute()->description('每分钟检查用户会员是否过期'); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }