mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-25 21:48:26 +00:00
17 lines
247 B
PHP
17 lines
247 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Result\Reason;
|
|
|
|
class DotAtEnd implements Reason
|
|
{
|
|
public function code() : int
|
|
{
|
|
return 142;
|
|
}
|
|
|
|
public function description() : string
|
|
{
|
|
return 'Dot at the end';
|
|
}
|
|
}
|