mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 19:48:49 +02:00
* N°7920 - laminas-mail is an abandoned package, replace it with symfony/mailer * Fix composer following merge
17 lines
295 B
PHP
17 lines
295 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Result\Reason;
|
|
|
|
class LocalOrReservedDomain implements Reason
|
|
{
|
|
public function code() : int
|
|
{
|
|
return 153;
|
|
}
|
|
|
|
public function description() : string
|
|
{
|
|
return 'Local, mDNS or reserved domain (RFC2606, RFC6762)';
|
|
}
|
|
}
|