command('radio:check-dj')->everyMinute()->withoutOverlapping(); $schedule->command('radio:record-songs')->everyFifteenSeconds()->withoutOverlapping(); $schedule->command('radio:auto-dj')->everyMinute()->withoutOverlapping(); $schedule->command('maintenance:check-scheduled')->everyMinute()->withoutOverlapping(); $schedule->command('monitor:emulator')->everyMinute()->withoutOverlapping(); $schedule->command('monitor:ddos')->everyFiveMinutes()->withoutOverlapping(); } #[\Override] protected function commands(): void { $this->load(__DIR__ . '/Commands'); $this->commands[] = SystemCheckCommand::class; $this->commands[] = FixCodeCommand::class; $this->commands[] = EmulatorMonitorCommand::class; $this->commands[] = DDoSDetectionCommand::class; require base_path('routes/console.php'); } }