File "EmailTooLong.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/egulias/email-validator/src/Warning/EmailTooLong.php
File size: 286 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Egulias\EmailValidator\Warning;

use Egulias\EmailValidator\EmailParser;

class EmailTooLong extends Warning
{
    const CODE = 66;

    public function __construct()
    {
        $this->message = 'Email is too long, exceeds ' . EmailParser::EMAIL_MAX_LENGTH;
    }
}