class CharNotAllowed
Hierarchy
- class \Egulias\EmailValidator\Result\Reason\CharNotAllowed implements \Egulias\EmailValidator\Result\Reason\Reason
Expanded class hierarchy of CharNotAllowed
1 file declares its use of CharNotAllowed
- DomainPart.php in vendor/
egulias/ email-validator/ src/ Parser/ DomainPart.php
File
-
vendor/
egulias/ email-validator/ src/ Result/ Reason/ CharNotAllowed.php, line 5
Namespace
Egulias\EmailValidator\Result\ReasonView source
class CharNotAllowed implements Reason {
public function code() : int {
return 1;
}
public function description() : string {
return "Character not allowed";
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
CharNotAllowed::code | public | function | Code for user land to act upon; | Overrides Reason::code |
CharNotAllowed::description | public | function | Short description of the result, human readable. | Overrides Reason::description |