Files
drupal11-ddev/vendor/egulias/email-validator/src/Warning/IPV6GroupCount.php
2025-10-08 11:39:17 -04:00

15 lines
257 B
PHP

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