Files
glastree/vendor/egulias/email-validator/src/Warning/IPV6Deprecated.php
T

15 lines
251 B
PHP
Raw Normal View History

2026-05-26 08:14:29 +02:00
<?php
namespace Egulias\EmailValidator\Warning;
class IPV6Deprecated extends Warning
{
public const CODE = 13;
public function __construct()
{
$this->message = 'Deprecated form of IPV6';
$this->rfcNumber = 5321;
}
}