IOP-Patho/vendor/egulias/email-validator/EmailValidator/Warning/DomainLiteral.php

15 lines
234 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
namespace Egulias\EmailValidator\Warning;
class DomainLiteral extends Warning
{
const CODE = 70;
public function __construct()
{
$this->message = 'Domain Literal';
$this->rfcNumber = 5322;
}
}