◆ __construct()
ILIAS\Refinery\Password\Group::__construct |
( |
Factory |
$data_factory, |
|
|
\ilLanguage |
$lng |
|
) |
| |
◆ hasLowerChars()
ILIAS\Refinery\Password\Group::hasLowerChars |
( |
| ) |
|
Get the constraint that a password has lower case chars.
- Returns
- HasLowerChars
Definition at line 60 of file Group.php.
62 return new HasLowerChars($this->data_factory, $this->lng);
◆ hasMinLength()
ILIAS\Refinery\Password\Group::hasMinLength |
( |
|
$min_length | ) |
|
Get the constraint that a password has a minimum length.
- Parameters
-
- Returns
- HasMinLength
Definition at line 40 of file Group.php.
42 return new HasMinLength($min_length, $this->data_factory, $this->lng);
◆ hasNumbers()
ILIAS\Refinery\Password\Group::hasNumbers |
( |
| ) |
|
Get the constraint that a password has numbers.
- Returns
- HasNumbers
Definition at line 70 of file Group.php.
72 return new HasNumbers($this->data_factory, $this->lng);
◆ hasSpecialChars()
ILIAS\Refinery\Password\Group::hasSpecialChars |
( |
| ) |
|
Get the constraint that a password has special chars.
- Returns
- HasSpecialChars
Definition at line 80 of file Group.php.
82 return new HasSpecialChars($this->data_factory, $this->lng);
◆ hasUpperChars()
ILIAS\Refinery\Password\Group::hasUpperChars |
( |
| ) |
|
Get the constraint that a password has upper case chars.
- Returns
- HasUpperChars
Definition at line 50 of file Group.php.
52 return new HasUpperChars($this->data_factory, $this->lng);
◆ $data_factory
ILIAS\Refinery\Password\Group::$data_factory |
|
protected |
◆ $lng
ILIAS\Refinery\Password\Group::$lng |
|
protected |
The documentation for this class was generated from the following file: