annotate vendor/egulias/email-validator/EmailValidator/Warning/Comment.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents
children
rev   line source
Chris@18 1 <?php
Chris@18 2
Chris@18 3 namespace Egulias\EmailValidator\Warning;
Chris@18 4
Chris@18 5 class Comment extends Warning
Chris@18 6 {
Chris@18 7 const CODE = 17;
Chris@18 8
Chris@18 9 public function __construct()
Chris@18 10 {
Chris@18 11 $this->message = "Comments found in this email";
Chris@18 12 }
Chris@18 13 }