We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2320093 commit 606067bCopy full SHA for 606067b
app/Console/Kernel.php
@@ -23,12 +23,12 @@ protected function schedule(Schedule $schedule): void
23
$schedule->command('lcm:post-article-to-telegram')->everyFourHours();
24
$schedule->command('lcm:send-unverified-mails')->weeklyOn(1, '8:00');
25
$schedule->command('sitemap:generate')->daily();
26
- $schedule->command('lcm:notify-pending-articles')->everyTwoDays();
+ $schedule->command('lcm:notify-pending-articles')->days(2);
27
}
28
29
30
protected function commands(): void
31
{
32
$this->load(__DIR__.'/Commands');
33
34
-}
+}
0 commit comments