Update src/Parser.php

Co-authored-by: Alexander M. Turek <me@derrabus.de>
This commit is contained in:
Eduardo Gulias Davis
2021-03-06 17:53:57 +01:00
committed by GitHub
parent 44d20e3440
commit ab22322b82
+1 -4
View File
@@ -66,10 +66,7 @@ abstract class Parser
{
$this->lexer->moveNext();
$this->lexer->moveNext();
if ($this->lexer->token['type'] === EmailLexer::S_AT) {
return false;
}
return true;
return $this->lexer->token['type'] !== EmailLexer::S_AT;
}
}