mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-28 11:07:55 +00:00
e4f04d5d8a
* Spoof validation
12 lines
258 B
PHP
12 lines
258 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Validation\Error;
|
|
|
|
use Egulias\EmailValidator\Exception\InvalidEmail;
|
|
|
|
class SpoofEmail extends InvalidEmail
|
|
{
|
|
const CODE = 998;
|
|
const REASON = "The email contains mixed UTF8 chars that makes it suspicious";
|
|
}
|