From 7946dbb8c8c52ca29d9a9cf7c0edc7fc3b7f3f74 Mon Sep 17 00:00:00 2001 From: Jing Li Date: Sun, 12 Nov 2023 19:51:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E4=BF=A1=E5=88=86=E8=B4=A6=E6=89=A7?= =?UTF-8?q?=E8=A1=8C=E7=AD=96=E7=95=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 2842b0b7..3a65fda4 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -24,8 +24,8 @@ class Kernel extends ConsoleKernel */ protected function schedule(Schedule $schedule) { - $schedule->command('order-profit:send')->daily(); - $schedule->command('order-profit:check')->everySixHours(); + $schedule->command('order-profit:send')->everyTwoHours(); + $schedule->command('order-profit:check')->everyThreeHours(); } /**