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
I believe that the fix on this issue should not have been approved. The rules now only supports integer values. And this does not match the description in the documentation: "The field under validation must be numeric and must have an exact length of value."
Steps To Reproduce:
<?php$validator = Validator::make(
['fractional_value' => 1.2],
['fractional_value' => 'digits_between:1,10']
);
$validator->errors()->first(); // The fractional value must be between 1 and 10 digits.
The text was updated successfully, but these errors were encountered:
Description:
I believe that the fix on this issue should not have been approved. The rules now only supports integer values. And this does not match the description in the documentation: "The field under validation must be numeric and must have an exact length of value."
Steps To Reproduce:
The text was updated successfully, but these errors were encountered: