calim schedule

This commit is contained in:
xiaomlove
2022-05-05 22:34:22 +08:00
parent a739cf924e
commit c23cc1b441
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -13,14 +13,14 @@ class ClaimSettle extends Command
*
* @var string
*/
protected $signature = 'claim:settle {--uid=} {--force=}';
protected $signature = 'claim:settle {--uid=} {--force=} {--test=}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Claim settle, options: --uid, --force';
protected $description = 'Claim settle, options: --uid, --force, --test';
/**
* Create a new command instance.
+1
View File
@@ -31,6 +31,7 @@ class Kernel extends ConsoleKernel
$schedule->command('hr:update_status')->everyMinute();
$schedule->command('hr:update_status --ignore_time=1')->hourly();
$schedule->command('user:delete_expired_token')->dailyAt('04:00');
$schedule->command('claim:settle')->monthlyOn();
}
/**