class NumericNonStringFieldValidator extends NumericFieldValidator (View source)

Validates that a value is a numeric value and not a string

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
protected int|null $minValue

Minimum size of the number

from  NumericFieldValidator
protected int|null $maxValue

Maximum size of the number

from  NumericFieldValidator

Methods

public
__construct(string $name, mixed $value, int|null $minValue = null, int|null $maxValue = null)

No description

public
validate()

Validate the value

protected
validateValue()

Inner validation method that performs the actual validation logic

protected
string
getTooSmallMessage()

No description

protected
string
getTooLargeMessage()

No description

Details

__construct(string $name, mixed $value, int|null $minValue = null, int|null $maxValue = null)

No description

Parameters

string $name
mixed $value
int|null $minValue
int|null $maxValue

ValidationResult validate()

Validate the value

Return Value

ValidationResult

protected ValidationResult validateValue()

Inner validation method that performs the actual validation logic

Return Value

ValidationResult

protected string getTooSmallMessage()

No description

Return Value

string

protected string getTooLargeMessage()

No description

Return Value

string