Initial Drupal 11 with DDEV setup
This commit is contained in:
16
vendor/egulias/email-validator/src/Result/Reason/UnOpenedComment.php
vendored
Normal file
16
vendor/egulias/email-validator/src/Result/Reason/UnOpenedComment.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Egulias\EmailValidator\Result\Reason;
|
||||
|
||||
class UnOpenedComment implements Reason
|
||||
{
|
||||
public function code() : int
|
||||
{
|
||||
return 152;
|
||||
}
|
||||
|
||||
public function description(): string
|
||||
{
|
||||
return 'Missing opening comment parentheses - https://tools.ietf.org/html/rfc5322#section-3.2.2';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user