Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
30 lines
1003 B
PHP
30 lines
1003 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Parser;
|
|
|
|
use Egulias\EmailValidator\EmailLexer;
|
|
use Egulias\EmailValidator\Result\Result;
|
|
use Egulias\EmailValidator\Result\ValidEmail;
|
|
use Egulias\EmailValidator\Result\InvalidEmail;
|
|
use Egulias\EmailValidator\Result\Reason\ExpectingATEXT;
|
|
|
|
class IDRightPart extends DomainPart
|
|
{
|
|
protected function validateTokens(bool $hasComments) : Result
|
|
{
|
|
$invalidDomainTokens = [
|
|
EmailLexer::S_DQUOTE => true,
|
|
EmailLexer::S_SQUOTE => true,
|
|
EmailLexer::S_BACKTICK => true,
|
|
EmailLexer::S_SEMICOLON => true,
|
|
EmailLexer::S_GREATERTHAN => true,
|
|
EmailLexer::S_LOWERTHAN => true,
|
|
];
|
|
|
|
if (isset($invalidDomainTokens[((array) $this->lexer->token)['type']])) {
|
|
return new InvalidEmail(new ExpectingATEXT('Invalid token in domain: ' . ((array) $this->lexer->token)['value']), ((array) $this->lexer->token)['value']);
|
|
}
|
|
return new ValidEmail();
|
|
}
|
|
}
|