first commit
This commit is contained in:
16
vendor/egulias/email-validator/src/Result/Reason/DotAtEnd.php
vendored
Normal file
16
vendor/egulias/email-validator/src/Result/Reason/DotAtEnd.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user