UniqueUserNameValidator
class UniqueUserNameValidator extends AbstractTranslatableValidator implements ValidatorForSubjectInterface (View source)
Validate the length of a string.
Constants
E_USERNAME_IN_USE |
The username is already in use. |
E_USERNAME_USED_BY_ANOTHER_USER |
The username is already in use by another user. |
Properties
protected array | $translatable_requirements | from AbstractTranslatableValidator | |
protected array | $translatable_errors | from AbstractTranslatableValidator | |
protected Connection | $connection | The connection to the database. |
Methods
Set the requirement string to a mixed value.
Set the error string to a string or to a closure.
Get the validator requirements in the form of an array keyed by it's respective error code.
Get an error string given a code and a passed value.
Check to see if $value a valid stand in for a translatable string.
Is this mixed value valid for the specified (optional) subject?
Details
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.
string[]
getRequirementStrings()
Get the validator requirements in the form of an array keyed by it's respective error code.
protected string|mixed
getErrorString(int $code, mixed $value, mixed $default = null)
Get an error string given a code and a passed value.
protected bool
isTranslatableStringValueValid(Closure|string|mixed $value)
Check to see if $value a valid stand in for a translatable string.
__construct(Connection $connection)
UniqueUserNameValidator constructor.
bool
isValid(mixed $mixed, ArrayAccess $error = null)
Is this mixed value valid.
bool
isValidFor(mixed $mixed, mixed $subject = null, ArrayAccess $error = null)
Is this mixed value valid for the specified (optional) subject?