class EmailFieldValidator extends StringFieldValidator implements SymfonyFieldValidatorInterface (View source)

Validates that a value is a valid email address Uses Symfony's Email constraint to validate

Traits

Trait for FieldValidators which validate using Symfony constraints

Properties

protected string $name

The name of the field being validated

from  FieldValidator
protected mixed $value

The value to validate

from  FieldValidator
protected bool $allowNull

Whether null is considered a valid value

from  FieldValidator

Methods

public
__construct(string $name, mixed $value, int|null $minLength = null, int|null $maxLength = null)

No description

public
validate()

Validate the value

public
Constraint|array
getConstraint()

Get the Symfony constraint to validate against Can return either a single constraint or an array of constraints

Details

__construct(string $name, mixed $value, int|null $minLength = null, int|null $maxLength = null)

No description

Parameters

string $name
mixed $value
int|null $minLength
int|null $maxLength

ValidationResult validate()

Validate the value

Return Value

ValidationResult

protected ValidationResult validateValue()

No description

Return Value

ValidationResult

Constraint|array getConstraint()

Get the Symfony constraint to validate against Can return either a single constraint or an array of constraints

Return Value

Constraint|array