mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-27 10:30:24 +00:00
cfa3d44471
* Move files in typical src and tests folder * Fix psalm error
10 lines
156 B
PHP
10 lines
156 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class CRLFAtTheEnd extends InvalidEmail
|
|
{
|
|
const CODE = 149;
|
|
const REASON = "CRLF at the end";
|
|
}
|