protected function MatchBase::isLower in Password Strength 8.2
1 call to MatchBase::isLower()
- MatchBase::getCardinality in src/
MatchBase.php - Get token's symbol space.
File
- src/
MatchBase.php, line 114
Class
Namespace
Drupal\password_strengthCode
protected function isLower($ord) {
return $ord >= 0x61 && $ord <= 0x7a;
}