Mercurial > hg > isophonics-drupal-site
view vendor/egulias/email-validator/EmailValidator/Warning/QuotedString.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
line wrap: on
line source
<?php namespace Egulias\EmailValidator\Warning; class QuotedString extends Warning { const CODE = 11; public function __construct($prevToken, $postToken) { $this->message = "Quoted String found between $prevToken and $postToken"; } }