You are here

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

MatchBase

Namespace

Drupal\password_strength

Code

protected function isUpper($ord) {
  return $ord >= 0x41 && $ord <= 0x5a;
}