From 5aad2b86bc4f21555e51634488b966ba2dea1069 Mon Sep 17 00:00:00 2001 From: Gustavo Novaro Date: Wed, 20 Mar 2024 18:27:54 +0100 Subject: [PATCH] refactor(global): Increase command schedule predict contact to hourly --- app/Console/Kernel.php | 2 +- version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index aacb5c1a..24a665b0 100755 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -31,7 +31,7 @@ class Kernel extends ConsoleKernel protected function schedule(Schedule $schedule): void { $schedule->command('crm:notification-reminder:send')->everyFiveMinutes(); - $schedule->command('crm:contact:email-predict')->dailyAt('23:00'); + $schedule->command('crm:contact:email-predict')->hourly(); $schedule->command('crm:email:validate')->dailyAt('00:00'); $schedule->command('crm:phone:validate')->dailyAt('01:00'); } diff --git a/version.php b/version.php index b093387c..9ad5c8b7 100755 --- a/version.php +++ b/version.php @@ -1,3 +1,3 @@