first commit
This commit is contained in:
16
vendor/egulias/email-validator/src/Result/Reason/LabelTooLong.php
vendored
Normal file
16
vendor/egulias/email-validator/src/Result/Reason/LabelTooLong.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?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';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user