From 356aef6c88b61d38931cb3dbf9a306fd31cd1cd8 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 6 Oct 2021 14:59:50 +0200 Subject: [PATCH] wip #4662 --- src/app/Console/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/Console/Kernel.php b/src/app/Console/Kernel.php index 797885b..1f40496 100644 --- a/src/app/Console/Kernel.php +++ b/src/app/Console/Kernel.php @@ -10,7 +10,7 @@ class Kernel extends ConsoleKernel /** * Define the application's command schedule. * - * @param \Illuminate\Console\Scheduling\Schedule $schedule + * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) @@ -18,6 +18,6 @@ class Kernel extends ConsoleKernel $schedule->command('backup:clean')->daily()->at('04:00'); $schedule->command('backup:run')->daily()->at('05:00'); - + $schedule->command('media-library:regenerate --only-missing')->hourly(); } } -- 2.39.5