Files
c-cms-legacy/vendor/egulias/email-validator/EmailValidator/Warning/DeprecatedComment.php
Mathieu Lagace 5fa3c85b97 Include Vendor
2018-06-27 20:31:54 -04:00

14 lines
210 B
PHP

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