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

14 lines
217 B
PHP
Executable File

<?php
namespace Egulias\EmailValidator\Warning;
class DeprecatedComment extends Warning
{
public const CODE = 37;
public function __construct()
{
$this->message = 'Deprecated comments';
}
}