comparison vendor/egulias/email-validator/EmailValidator/Warning/Comment.php @ 5:12f9dff5fda9 tip

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