mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 15:22:17 +02:00
* N°7920 - laminas-mail is an abandoned package, replace it with symfony/mailer * Fix composer following merge
14 lines
195 B
PHP
14 lines
195 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Warning;
|
|
|
|
class TLD extends Warning
|
|
{
|
|
public const CODE = 9;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->message = "RFC5321, TLD";
|
|
}
|
|
}
|