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
If an invalid property is included in the RRULE string, it will be ignored on the creation of the RRULE object.
$rule = new \Recurr\Rule('FREQ=MONTHLY;BYDAY=-1FR;COUNT=10;SKIP=5');
The above works properly
Desired behavior
$rule = new \Recurr\Rule('FREQ=MONTHLY;BYDAY=-1FR;COUNT=10;SKIP=5');
Exception:
Recurr\Exception\InvalidRRule with message 'Unknown RRULE property: SKIP
Why?
If you rely on storing RRULE string in your database and recreating them in PHP and JS then the same rule will pass for PHP using this package but fail in JS.
The text was updated successfully, but these errors were encountered:
Current behavior
If an invalid property is included in the RRULE string, it will be ignored on the creation of the RRULE object.
The above works properly
Desired behavior
Exception:
Recurr\Exception\InvalidRRule with message 'Unknown RRULE property: SKIP
Why?
If you rely on storing RRULE string in your database and recreating them in PHP and JS then the same rule will pass for PHP using this package but fail in JS.
The text was updated successfully, but these errors were encountered: