command('schedule-monitor:sync')->dailyAt('04:56'); $schedule->command('schedule-monitor:clean')->daily(); //Horizon Graph Schedule $schedule->command('horizon:snapshot')->everyFiveMinutes(); /** * Purge Data Schedule */ $schedule->job(new PurgeUsersJob) ->weekly(); /** * Finances Update Schedule */ $schedule->job(new UpdateAllianceWalletJournalJob) ->timezone('UTC') ->hourlyAt('45') ->withoutOverlapping(); /** * Item Update Schedule */ $schedule->job(new UpdateItemPricesJob) ->timezone('UTC') ->hourlyAT('30') ->withoutOverlapping(); /** * Mining Tax Schedule */ $schedule->job(new FetchMiningTaxesObservers) ->timezone('UTC') ->dailyAt('22:00') ->withoutOverlapping(); $schedule->job(new PreFetchMiningTaxesLedgers) ->timezone('UTC') ->dailyAt('20:00') ->withoutOverlapping(); $schedule->job(new SendMiningTaxesInvoices) ->timezone('UTC') ->weeklyOn(1, '06:00') ->withoutOverlapping(); $schedule->job(new ProcessMiningTaxesPayments) ->timezone('UTC') ->hourlyAt('15') ->withoutOverlapping(); $schedule->job(new UpdateMiningTaxesLateInvoices1st) ->timezone('UTC') ->monthlyOn(1, '16:00') ->withoutOverlapping(); $schedule->job(new UpdateMiningTaxesLateInvoices15th) ->timezone('UTC') ->monthlyOn(15, '16:00') ->withoutOverlapping(); /** * Alliance Structure and Assets Schedule */ $schedule->job(new FetchAllianceStructures) ->timezone('UTC') ->dailyAt('21:00') ->withoutOverlapping(); $schedule->job(new FetchAllianceAssets) ->timezone('UTC') ->hourlyAt('15') ->withoutOverlapping(); $schedule->job(new PurgeAllianceStructures) ->timezone('UTC') ->monthlyOn(2, '14:00') ->withoutOverlapping(); $schedule->job(new PurgeAllianceAssets) ->timezone('UTC') ->monthlyOn(2, '15:00') ->withoutOverlapping(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }