Home
last modified time | relevance | path

Searched refs:checkTextLength (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/vendor/aziraphale/email-address-validator/
H A DEmailAddressValidator.php36 if (!self::checkTextLength($emailAddress, 3, 256)) {
88 if (!self::checkTextLength($localPortion, 1, 64)) {
119 if (!self::checkTextLength($domainPortion, 1, 255)) {
153 if (!self::checkTextLength($domainPortionParts[$i], 1, 63)) {
177 protected static function checkTextLength($text, $minimum, $maximum) function in EmailAddressValidator