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
It would be nice, when Digit validator can handle integer as well as string value. I enabled orm.cast_on_hydrate and all Digit validations are now triggering an error because of int types :)
Please change actual behavior to
if (is_int($value) || ctype_digit($value)) {
returntrue;
}
The text was updated successfully, but these errors were encountered:
It would be nice, when Digit validator can handle integer as well as string value. I enabled orm.cast_on_hydrate and all Digit validations are now triggering an error because of int types :)
Please change actual behavior to
The text was updated successfully, but these errors were encountered: