IOP-Patho/vendor/egulias/email-validator/EmailValidator/Warning/IPV6GroupCount.php

15 lines
250 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
namespace Egulias\EmailValidator\Warning;
class IPV6GroupCount extends Warning
{
const CODE = 72;
public function __construct()
{
$this->message = 'Group count is not IPV6 valid';
$this->rfcNumber = 5322;
}
}