mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-28 13:08:45 +02:00
* N°7920 - laminas-mail is an abandoned package, replace it with symfony/mailer * Fix composer following merge
16 lines
386 B
PHP
16 lines
386 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Parser;
|
|
|
|
use Egulias\EmailValidator\Result\Result;
|
|
use Egulias\EmailValidator\Result\InvalidEmail;
|
|
use Egulias\EmailValidator\Result\Reason\CommentsInIDRight;
|
|
|
|
class IDLeftPart extends LocalPart
|
|
{
|
|
protected function parseComments(): Result
|
|
{
|
|
return new InvalidEmail(new CommentsInIDRight(), $this->lexer->current->value);
|
|
}
|
|
}
|