From b0d8b601833c260ca7cd7a1a003e51368c7b5492 Mon Sep 17 00:00:00 2001 From: farid Date: Tue, 9 Feb 2021 18:14:46 +0330 Subject: [PATCH] fix: change command order --- app/Console/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 444fee7..f563818 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -26,8 +26,8 @@ class Kernel extends ConsoleKernel { $schedule->command('today:schedule')->daily(); $schedule->command('today:run')->everyMinute(); - $schedule->command('domain:update_domain_expiry_date')->daily(); # update domain expired_at $schedule->command('domain:update_ssl_expiry_date')->daily(); # update SSL expired_at + $schedule->command('domain:update_domain_expiry_date')->daily(); # update domain expired_at } /**