バリデーターのソースを見てください。空の文字列または null が渡された場合、何もしません。つまり、空の値は常に成功します。
そうです、変更に関するチケットがありますが、これは予想される動作です。
<?php
/**
* @author Bernhard Schussek <[...]>
*
* @api
*/
class EmailValidator extends ConstraintValidator
{
/**
* {@inheritDoc}
*/
public function validate($value, Constraint $constraint)
{
if (null === $value || '' === $value) {
return;
}
if (!is_scalar($value) && !(is_object($value) && method_exists($value, '__toString'))) {
throw new UnexpectedTypeException($value, 'string');
}
$value = (string) $value;
$valid = filter_var($value, FILTER_VALIDATE_EMAIL);
if ($valid) {
$host = substr($value, strpos($value, '@') + 1);
// Check for host DNS resource records
if ($valid && $constraint->checkMX) {
$valid = $this->checkMX($host);
} elseif ($valid && $constraint->checkHost) {
$valid = $this->checkHost($host);
}
}
if (!$valid) {
$this->context->addViolation($constraint->message, array('{{ value }}' => $value));
}
}
// ...
}
NotBlank
との組み合わせを使用する必要があります。Email
<?php
use Symfony\Component\Validator\Constraints as Assert;
$emailValidator = new Assert\Email();
$emailValidator->message = 'Invalid email address';
$validator->validateValue($the_email, array(
new Assert\NotBlank(),
$emailValidator,
));