PasswordValidator
extends AbstractValidator
Table of Contents
Methods
-
validate()
: bool
-
checkLowerCase()
: mixed
-
checkMaxLength()
: mixed
-
checkMinLenght()
: mixed
-
checkNumber()
: mixed
-
checkSpecialChars()
: mixed
-
checkUpperCase()
: mixed
validate()
public
validate(Validation $validation, mixed $field) : bool
Parameters
-
$validation
: Validation
-
-
$field
: mixed
-
checkLowerCase()
private
checkLowerCase([string $password = null ]) : mixed
Parameters
-
$password
: string
= null
-
checkMaxLength()
private
checkMaxLength([string $password = null ], int $length) : mixed
Parameters
-
$password
: string
= null
-
-
$length
: int
-
checkMinLenght()
private
checkMinLenght([string $password = null ], int $length) : mixed
Parameters
-
$password
: string
= null
-
-
$length
: int
-
checkNumber()
private
checkNumber([string $password = null ]) : mixed
Parameters
-
$password
: string
= null
-
checkSpecialChars()
private
checkSpecialChars([string $password = null ]) : mixed
Parameters
-
$password
: string
= null
-
checkUpperCase()
private
checkUpperCase([string $password = null ]) : mixed
Parameters
-
$password
: string
= null
-