I know that is not the PR of the century but I would like to add an helper to check if a ConstraintViolationList contains or not violation. At the moment we have to do this to check if ConstraintViolationList has some errors, ```php if (0 !== count($violations)) { ``` This is what is done in [doc](https://symfony.com/doc/current/components/validator.html#usage) and [Api Platform](https://github.com/api-platform/core/blob/master/src/Bridge/Symfony/Validator/Validator.php#L62) and I would like to replace it by ```php if($violations->hasViolation()) ``` It's better to reading and easier to be implemented with IDE autocompletion for newcomers that are not familiar with the Validator API To avoid BC break I would like to target Symfony 5. I will update documentation if code is merged. WDYT ?