annotate vendor/egulias/email-validator/EmailValidator/Warning/QuotedString.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 QuotedString extends Warning
Chris@18 6 {
Chris@18 7 const CODE = 11;
Chris@18 8
Chris@18 9 public function __construct($prevToken, $postToken)
Chris@18 10 {
Chris@18 11 $this->message = "Quoted String found between $prevToken and $postToken";
Chris@18 12 }
Chris@18 13 }