This commit is contained in:
2021-03-15 20:47:25 +09:00
parent f7312a97b0
commit 252deff4c2

View File

@@ -76,16 +76,16 @@ class Kernel extends ConsoleKernel
/**
* Mining Tax Schedule
*/
$schedule->command('MiningTaxes:Observers')
$schedule->command('MiningTax:Observers')
->dailyAt('22:00')
->withoutOverlapping();
$schedule->command('MiningTaxes:Ledgers')
$schedule->command('MiningTax:Ledgers')
->dailyAt('20:00')
->withoutOverlapping();
$schedule->command('MiningTaxes:Invoices')
$schedule->command('MiningTax:Invoices')
->weeklyOn(1, '8:00')
->withoutOverlapping();
$schedule->command('MiningTaxes:Payments')
$schedule->command('MiningTax:Payments')
->hourlyAt('15')
->withoutOverlapping();
}