From: Vincent Vanwaelscappel Date: Wed, 6 Oct 2021 12:59:50 +0000 (+0200) Subject: wip #4662 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=356aef6c88b61d38931cb3dbf9a306fd31cd1cd8;p=cubist_cms-back.git wip #4662 --- 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(); } }