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 306d426 commit 4989a3bCopy full SHA for 4989a3b
routes/console.php
@@ -4,13 +4,21 @@
4
5
Schedule::call(function () {
6
Artisan::call('app:update-fav');
7
-})->withoutOverlapping()
8
- ->everyFiveMinutes();
+})
+->name('update-fav')
9
+->withoutOverlapping()
10
+->everyTenMinutes();
11
12
13
Artisan::call('app:download-video');
-})->withoutOverlapping()->everyFiveMinutes();
14
15
+->name('download-video')
16
17
18
19
20
Artisan::call('app:download-danmaku');
-})->withoutOverlapping()->everyOddHour();
21
22
+->name('download-danmaku')
23
24
+->dailyAt('00:00');
0 commit comments