Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scheduling.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ We've already seen a few examples of how you may configure a task to run at spec
| `->dailyAt('13:00');` | Run the task every day at 13:00. |
| `->twiceDaily(1, 13);` | Run the task daily at 1:00 & 13:00. |
| `->twiceDailyAt(1, 13, 15);` | Run the task daily at 1:15 & 13:15. |
| `->daysOfMonth([1, 10, 20]);` | Run the task on specific days of the month. |
| `->weekly();` | Run the task every Sunday at 00:00. |
| `->weeklyOn(1, '8:00');` | Run the task every week on Monday at 8:00. |
| `->monthly();` | Run the task on the first day of every month at 00:00. |
Expand Down