function LocalPart::parseComments
1 call to LocalPart::parseComments()
- LocalPart::parse in vendor/
egulias/ email-validator/ src/ Parser/ LocalPart.php
1 method overrides LocalPart::parseComments()
- IDLeftPart::parseComments in vendor/
egulias/ email-validator/ src/ Parser/ IDLeftPart.php
File
-
vendor/
egulias/ email-validator/ src/ Parser/ LocalPart.php, line 140
Class
Namespace
Egulias\EmailValidator\ParserCode
protected function parseComments() : Result {
$commentParser = new Comment($this->lexer, new LocalComment());
$result = $commentParser->parse();
$this->warnings = [
$this->warnings,
$commentParser->getWarnings(),
];
return $result;
}