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
When using the Lumen validator for emailadresses it will allow an emailadress that is not valid.
The emailaddress used: herr@ notice the space after the @-sign.
Steps To Reproduce:
$validator = Validator::make(['email' => 'herr@ '], [
'email' => 'required|email',
]);
dd($validator->fails()); // returns false, which is not correct
The text was updated successfully, but these errors were encountered:
I'm not sure if you made a mistake in your 'Steps to Reproduce' because $validator->fails() returns true on an invalid email address would be the expected behaviour.
Otherwise, this could be your issue.
I'm not sure if you made a mistake in your 'Steps to Reproduce' because $validator->fails() returns true on an invalid email address would be the expected behaviour.
Otherwise, this could be your issue.
Uh oh!
There was an error while loading. Please reload this page.
Description:
When using the Lumen validator for emailadresses it will allow an emailadress that is not valid.
The emailaddress used:
herr@
notice the space after the @-sign.Steps To Reproduce:
The text was updated successfully, but these errors were encountered: