Comment.php 209 B

12345678910111213
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class Comment extends Warning
  4. {
  5. const CODE = 17;
  6. public function __construct()
  7. {
  8. $this->message = "Comments found in this email";
  9. }
  10. }