You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
Pretty self-explanatory, the proposed additions are to framework/src/Illuminate/Console/Scheduling/ManagesFrequencies.php to conveniently accommodate two very common use cases for scheduled tasks: twice a month, and end of month.
Precedent exists for twiceMonthly($first, $second) as twiceDaily() already exists, even though it, too, could be accommodated via method chaining.
A related interesting possibility would be to add the ability to specify "end" as a parameter in twiceMonthy($first, $second) and the exiting monthlyOn($day, $time);
I'm open to submitting a PR, just wanted to measure interest, gather feedback first.
The text was updated successfully, but these errors were encountered:
Pretty self-explanatory, the proposed additions are to
framework/src/Illuminate/Console/Scheduling/ManagesFrequencies.php
to conveniently accommodate two very common use cases for scheduled tasks: twice a month, and end of month.Precedent exists for
twiceMonthly($first, $second)
astwiceDaily()
already exists, even though it, too, could be accommodated via method chaining.A related interesting possibility would be to add the ability to specify
"end"
as a parameter intwiceMonthy($first, $second)
and the exitingmonthlyOn($day, $time)
;I'm open to submitting a PR, just wanted to measure interest, gather feedback first.
The text was updated successfully, but these errors were encountered: