command('autoJob')->everyMinute(); $schedule->command('autoClearLog')->everyThirtyMinutes(); $schedule->command('autoDecGoodsTraffic')->everyTenMinutes(); $schedule->command('autoResetUserTraffic')->daily(); $schedule->command('autoCheckNodeStatus')->everyMinute(); $schedule->command('autoStatisticsNodeDailyTraffic')->dailyAt('23:55'); $schedule->command('autoStatisticsNodeHourlyTraffic')->hourly(); $schedule->command('autoStatisticsUserDailyTraffic')->dailyAt('23:50'); $schedule->command('autoStatisticsUserHourlyTraffic')->hourly(); $schedule->command('userTrafficAbnormalAutoWarning')->hourly(); $schedule->command('userExpireAutoWarning')->dailyAt('20:00'); $schedule->command('userTrafficAutoWarning')->dailyAt('10:30'); } /** * Register the Closure based commands for the application. * * @return void */ protected function commands() { require base_path('routes/console.php'); } }