mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 18:59:09 -04:00
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";
|
|
}
|
|
}
|