mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-09-20 15:16:40 +00:00
cfa3d44471
* Move files in typical src and tests folder * Fix psalm error
14 lines
188 B
PHP
14 lines
188 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Warning;
|
|
|
|
class TLD extends Warning
|
|
{
|
|
const CODE = 9;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->message = "RFC5321, TLD";
|
|
}
|
|
}
|