*/ protected $commands = [ Commands\ParseCachedWebMentions::class, Commands\ReDownloadWebMentions::class, ]; /** * Define the application's command schedule. * * @codeCoverageIgnore */ protected function schedule(Schedule $schedule): void { $schedule->command('horizon:snapshot')->everyFiveMinutes(); $schedule->command('cache:prune-stale-tags')->hourly(); } /** * Register the commands for the application. */ protected function commands(): void { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }