From f6c6cf6448c53a9ecb19b3e6d23c6e77bb2c6c59 Mon Sep 17 00:00:00 2001 From: paoloar77 Date: Wed, 19 Jun 2024 16:40:36 +0200 Subject: [PATCH] aa --- 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 b1ba626d..f338a3c3 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -54,7 +54,7 @@ class Kernel extends ConsoleKernel }); // Pianifica l'esecuzione del comando ogni giorno a mezzanotte - $schedule->command('fix:storage-permissions')->daily()->at('00:30')->before(function () { + $schedule->command('fix:storage-permissions')->everyFiveMinutes()->before(function () { Log::info('Running fix:storage-permissions'); }); }