Mercurial > hg > cmmr2012-drupal-site
annotate vendor/egulias/email-validator/EmailValidator/Warning/CFWSWithFWS.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 |
rev | line source |
---|---|
Chris@5 | 1 <?php |
Chris@5 | 2 |
Chris@5 | 3 namespace Egulias\EmailValidator\Warning; |
Chris@5 | 4 |
Chris@5 | 5 class CFWSWithFWS extends Warning |
Chris@5 | 6 { |
Chris@5 | 7 const CODE = 18; |
Chris@5 | 8 |
Chris@5 | 9 public function __construct() |
Chris@5 | 10 { |
Chris@5 | 11 $this->message = 'Folding whites space followed by folding white space'; |
Chris@5 | 12 } |
Chris@5 | 13 } |