TranslatableValidatorInterface
interface TranslatableValidatorInterface implements ValidatorInterface (View source)
A modifier to the standard validator interface that enables translatable requirements and errors.
Methods
string[]
getRequirementStrings()
Get the validator requirements in the form of an array keyed by it's respective error code.
from
ValidatorInterface
bool
from
ValidatorInterface
setRequirementString(int $code, string|Closure $message)
Set the requirement string to a mixed value.
setErrorString(int $code, string|Closure $message)
Set the error string to a string or to a closure.
Details
string[]
getRequirementStrings()
Get the validator requirements in the form of an array keyed by it's respective error code.
bool
isValid(mixed $mixed, ArrayAccess $error = null)
Is this mixed value valid.
setRequirementString(int $code, string|Closure $message)
Set the requirement string to a mixed value.
setErrorString(int $code, string|Closure $message)
Set the error string to a string or to a closure.