mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 18:59:09 -04:00
14 lines
209 B
PHP
14 lines
209 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Warning;
|
|
|
|
class Comment extends Warning
|
|
{
|
|
const CODE = 17;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->message = "Comments found in this email";
|
|
}
|
|
}
|