annotate vendor/egulias/email-validator/EmailValidator/Warning/QuotedPart.php @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents af1871eacc83
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 QuotedPart extends Warning
Chris@18 6 {
Chris@18 7 const CODE = 36;
Chris@18 8
Chris@18 9 public function __construct($prevToken, $postToken)
Chris@18 10 {
Chris@18 11 $this->message = "Deprecated Quoted String found between $prevToken and $postToken";
Chris@18 12 }
Chris@18 13 }