19 declare(strict_types=1);
 
hasSpecialChars()
Get the constraint that a password has special chars. 
 
A constraint encodes some resrtictions on values. 
 
hasUpperChars()
Get the constraint that a password has upper case chars. 
 
hasNumbers()
Get the constraint that a password has numbers. 
 
hasLowerChars()
Get the constraint that a password has lower case chars. 
 
hasMinLength(int $min_length)
Get the constraint that a password has a minimum length. 
 
__construct(Factory $data_factory, ilLanguage $lng)