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(); $schedule->command('update:auto')->everyMinute()->withoutOverlapping(); $schedule->command('nitro:auto')->everyMinute()->withoutOverlapping(); $schedule->command('system:repair')->everyTenMinutes()->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; $this->commands[] = EmulatorUpdateCommand::class; $this->commands[] = AutoUpdateCommand::class; $this->commands[] = NitroUpdateCommand::class; $this->commands[] = SystemRepairCommand::class; $this->commands[] = SystemHealthCommand::class; $this->commands[] = GenerateNitroConfigs::class; require base_path('routes/console.php'); } }