ispt4.0_laravel/vendor/egulias/email-validator/src/Warning/Comment.php
2023-08-02 19:29:17 +01:00

14 lines
216 B
PHP
Executable File

<?php
namespace Egulias\EmailValidator\Warning;
class Comment extends Warning
{
public const CODE = 17;
public function __construct()
{
$this->message = "Comments found in this email";
}
}