overTimeOrder::class, 'scheduleNotice'=>overTimeOrder::class, 'packExpiredCheck'=>packExpiredCheck::class, ]; /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) { //检测服务包过期的定时任务 $schedule->command('packExpiredCheck')->hourly(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }