File "IDLeftPart.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/egulias/email-validator/src/Parser/IDLeftPart.php
File size: 386 bytes
MIME-type: text/x-php
Charset: utf-8

<?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);
    }
}