src/Parser/DoubleQuote.php 1 location
|
@@ 43-45 (lines=3) @@
|
40 |
|
$this->warnings[CFWSWithFWS::CODE] = new CFWSWithFWS(); |
41 |
|
$setSpecialsWarning = false; |
42 |
|
} |
43 |
|
if ($this->lexer->token['type'] === EmailLexer::S_BACKSLASH && $this->lexer->isNextToken(EmailLexer::S_DQUOTE)) { |
44 |
|
$this->lexer->moveNext(); |
45 |
|
} |
46 |
|
|
47 |
|
$this->lexer->moveNext(); |
48 |
|
|
src/Parser/DomainPart.php 1 location
|
@@ 193-195 (lines=3) @@
|
190 |
|
|
191 |
|
$domain .= $this->lexer->token['value']; |
192 |
|
|
193 |
|
if ($this->lexer->token['type'] === EmailLexer::S_DOT && $this->lexer->isNextToken(EmailLexer::GENERIC)) { |
194 |
|
$tldMissing = false; |
195 |
|
} |
196 |
|
|
197 |
|
$exceptionsResult = $this->checkDomainPartExceptions($prev, $hasComments); |
198 |
|
if ($exceptionsResult->isInvalid()) { |