17 lines
267 B
PHP
17 lines
267 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Result\Reason;
|
|
|
|
class RFCWarnings implements Reason
|
|
{
|
|
public function code() : int
|
|
{
|
|
return 997;
|
|
}
|
|
|
|
public function description() : string
|
|
{
|
|
return 'Warnings found after validating';
|
|
}
|
|
}
|