From: Vincent Vanwaelscappel Date: Thu, 24 Apr 2025 10:37:12 +0000 (+0200) Subject: wip #7454 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=f6772c87bcc732e6e04530522fc6eb370e6d4f76;p=psq.git wip #7454 --- 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'); }