use Symfony\Component\Validator\Validator\ValidatorInterface;
$errors = $this->validator->validate(
$object,
null,
$this->addressValidationGroups
);
if ($errors->count() > 0) {
}
use Symfony\Component\Validator\Validator\ValidatorInterface;
$errors = $this->validator->validate(
$object,
null,
$this->addressValidationGroups
);
if ($errors->count() > 0) {
}