/**
  * {@inheritdoc}
  **/
 public function validate($value, Constraint $constraint)
 {
     $this->regexValidator->initialize($this->context);
     $this->regexValidator->validate($value, $constraint);
     $notBlankConstraint = new NotBlank();
     $notBlankConstraint->message = $constraint->message;
     $this->notBlankValidator->initialize($this->context);
     $this->notBlankValidator->validate($value, $notBlankConstraint);
 }