class LocalTooLong
Hierarchy
- class \Egulias\EmailValidator\Warning\Warning
- class \Egulias\EmailValidator\Warning\LocalTooLong extends \Egulias\EmailValidator\Warning\Warning
Expanded class hierarchy of LocalTooLong
1 file declares its use of LocalTooLong
- LocalPart.php in vendor/
egulias/ email-validator/ src/ Parser/ LocalPart.php
File
-
vendor/
egulias/ email-validator/ src/ Warning/ LocalTooLong.php, line 5
Namespace
Egulias\EmailValidator\WarningView source
class LocalTooLong extends Warning {
public const CODE = 64;
public const LOCAL_PART_LENGTH = 64;
public function __construct() {
$this->message = 'Local part is too long, exceeds 64 chars (octets)';
$this->rfcNumber = 5322;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
LocalTooLong::CODE | public | constant | Overrides Warning::CODE | ||
LocalTooLong::LOCAL_PART_LENGTH | public | constant | |||
LocalTooLong::__construct | public | function | |||
Warning::$message | protected | property | |||
Warning::$rfcNumber | protected | property | |||
Warning::code | public | function | 20 | ||
Warning::message | public | function | |||
Warning::RFCNumber | public | function | |||
Warning::__toString | public | function |