first commit
This commit is contained in:
14
vendor/egulias/email-validator/src/Warning/IPV6ColonEnd.php
vendored
Normal file
14
vendor/egulias/email-validator/src/Warning/IPV6ColonEnd.php
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace Egulias\EmailValidator\Warning;
|
||||
|
||||
class IPV6ColonEnd extends Warning
|
||||
{
|
||||
public const CODE = 77;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->message = ':: found at the end of the domain literal';
|
||||
$this->rfcNumber = 5322;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user