mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-09-17 13:36:55 +00:00
cfa3d44471
* Move files in typical src and tests folder * Fix psalm error
10 lines
165 B
PHP
10 lines
165 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class AtextAfterCFWS extends InvalidEmail
|
|
{
|
|
const CODE = 133;
|
|
const REASON = "ATEXT found after CFWS";
|
|
}
|