mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-09-20 15:16:40 +00:00
18b9e5b572
Visibility MUST be declared on all properties and methods; abstract and final MUST be declared before the visibility; static MUST be declared after the visibility.
15 lines
276 B
PHP
15 lines
276 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Warning;
|
|
|
|
class IPV6MaxGroups extends Warning
|
|
{
|
|
public const CODE = 75;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->message = 'Reached the maximum number of IPV6 groups allowed';
|
|
$this->rfcNumber = 5321;
|
|
}
|
|
}
|