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