mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-27 12:38:44 +02:00
* N°7920 - laminas-mail is an abandoned package, replace it with symfony/mailer * Fix composer following merge
15 lines
251 B
PHP
15 lines
251 B
PHP
<?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;
|
|
}
|
|
}
|