Skip to content
Snippets Groups Projects
Commit 50a9377e authored by Mathieu's avatar Mathieu
Browse files

FIX #18461 TIME 3:00 fix postal address number error if 0

parent 9f0488e8
No related branches found
No related tags found
Loading
......@@ -24,6 +24,9 @@ class ValidatorModel
throw new \Exception('First argument must be a non empty array');
}
foreach ($keys as $key) {
if (Validator::stringType()->validate($args[$key]) && trim($args[$key]) == '0') {
$args[$key] .= 'NOT_EMPTY';
}
if (!Validator::notEmpty()->validate($args[$key])) {
throw new \Exception("Argument {$key} is empty");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment