File "LabelTooLong.php"
Full Path: /var/www/html/back/vendor/egulias/email-validator/src/Result/Reason/LabelTooLong.php
File size: 280 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Egulias\EmailValidator\Result\Reason;
class LabelTooLong implements Reason
{
public function code() : int
{
return 245;
}
public function description() : string
{
return 'Domain "label" is longer than 63 characters';
}
}