interface Reason
Hierarchy
- interface \Egulias\EmailValidator\Result\Reason\Reason
Expanded class hierarchy of Reason
All classes that implement Reason
2 files declare their use of Reason
- InvalidEmail.php in vendor/
egulias/ email-validator/ src/ Result/ InvalidEmail.php - MultipleErrors.php in vendor/
egulias/ email-validator/ src/ Result/ MultipleErrors.php
File
-
vendor/
egulias/ email-validator/ src/ Result/ Reason/ Reason.php, line 5
Namespace
Egulias\EmailValidator\Result\ReasonView source
interface Reason {
/**
* Code for user land to act upon;
*/
public function code() : int;
/**
* Short description of the result, human readable.
*/
public function description() : string;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
Reason::code | public | function | Code for user land to act upon; | 31 |
Reason::description | public | function | Short description of the result, human readable. | 31 |