mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-09-08 09:06:49 +00:00
1ca313dfcd
A PHP file without end tag must always end with a single empty line feed.
17 lines
277 B
PHP
17 lines
277 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Result\Reason;
|
|
|
|
class CommaInDomain implements Reason
|
|
{
|
|
public function code() : int
|
|
{
|
|
return 200;
|
|
}
|
|
|
|
public function description() : string
|
|
{
|
|
return "Comma ',' is not allowed in domain part";
|
|
}
|
|
}
|