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