5 use Illuminate\Console\Scheduling\Schedule;
6 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
8 class Kernel extends ConsoleKernel
11 * Define the application's command schedule.
13 * @param \Illuminate\Console\Scheduling\Schedule $schedule
16 protected function schedule(Schedule $schedule)
18 $schedule->command('twitch:channel-info')->everyFiveMinutes();
19 $schedule->command('sync:ladder')->daily();
20 $schedule->command('sync:speedgaming')->everyFiveMinutes();
21 $schedule->command('sync:sra')->everyFifteenMinutes();
22 $schedule->command('sync:avatars')->everyFiveMinutes();
23 $schedule->command('sync:racetime')->everyFiveMinutes();
24 $schedule->command('chat:evaluate 100')->everyMinute();
25 $schedule->command('guessing:clean')->everyFifteenMinutes();
29 * Register the commands for the application.
33 protected function commands()
35 $this->load(__DIR__.'/Commands');
37 require base_path('routes/console.php');