Skip to content

Commit

Permalink
[Validator] Fabbot fix
Browse files Browse the repository at this point in the history
Not related to the PR
  • Loading branch information
l-vo committed Mar 19, 2020
1 parent ed64664 commit 2d50ed1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -170,7 +170,7 @@ private function getLimit($propertyPath, $default, Constraint $constraint)
try {
return $this->getPropertyAccessor()->getValue($object, $propertyPath);
} catch (NoSuchPropertyException $e) {
throw new ConstraintDefinitionException(sprintf('Invalid property path "%s" provided to "%s" constraint: %s.', $propertyPath, \get_class($constraint), $e->getMessage()), 0, $e);
throw new ConstraintDefinitionException(sprintf('Invalid property path "%s" provided to "%s" constraint: "%s".', $propertyPath, \get_class($constraint), $e->getMessage()), 0, $e);
}
}

Expand Down

0 comments on commit 2d50ed1

Please sign in to comment.