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
Look into making the interface more fluent in 2.0.
Instead of:
->every()
->minutes(5)
Consider:
->every(5)
->minutes()
Need to look at how this impacts both every() and only(), and their respective periods. Definitely want to avoid having minutes() and minute() used for the same purpose, e.g.:
This would be bad
->every(5)
->minute()
The text was updated successfully, but these errors were encountered:
Look into making the interface more fluent in 2.0.
Instead of:
Consider:
Need to look at how this impacts both
every()
andonly()
, and their respective periods. Definitely want to avoid havingminutes()
andminute()
used for the same purpose, e.g.:This would be bad
The text was updated successfully, but these errors were encountered: