IOP-Patho/vendor/egulias/email-validator/EmailValidator/Warning/DeprecatedComment.php

14 lines
210 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
namespace Egulias\EmailValidator\Warning;
class DeprecatedComment extends Warning
{
const CODE = 37;
public function __construct()
{
$this->message = 'Deprecated comments';
}
}