Skip to content

Commit 71eeb73

Browse files
[12.x] Add daysOfMonth to scheduling (#10922)
* add `daysOfMonth` to scheduling * Update daysOfMonth description in scheduling.md Clarified the description for the daysOfMonth method. --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
1 parent ce83812 commit 71eeb73

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scheduling.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ We've already seen a few examples of how you may configure a task to run at spec
168168
| `->dailyAt('13:00');` | Run the task every day at 13:00. |
169169
| `->twiceDaily(1, 13);` | Run the task daily at 1:00 & 13:00. |
170170
| `->twiceDailyAt(1, 13, 15);` | Run the task daily at 1:15 & 13:15. |
171+
| `->daysOfMonth([1, 10, 20]);` | Run the task on specific days of the month. |
171172
| `->weekly();` | Run the task every Sunday at 00:00. |
172173
| `->weeklyOn(1, '8:00');` | Run the task every week on Monday at 8:00. |
173174
| `->monthly();` | Run the task on the first day of every month at 00:00. |

0 commit comments

Comments
 (0)