From f6772c87bcc732e6e04530522fc6eb370e6d4f76 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 24 Apr 2025 12:37:12 +0200 Subject: [PATCH] wip #7454 --- app/Console/Kernel.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index fbb7f2d..40a07b9 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -20,12 +20,13 @@ 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) { $schedule->job(new CheckForTrialExpirationDates)->dailyAt('13:00'); + $schedule->command('psq:fluidbook:archives')->everyFifteenMinutes(); } /** @@ -35,7 +36,7 @@ class Kernel extends ConsoleKernel */ protected function commands() { - $this->load(__DIR__.'/Commands'); + $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } -- 2.39.5