QuotedString.php 261 B

12345678910111213
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class QuotedString extends Warning
  4. {
  5. const CODE = 11;
  6. public function __construct($prevToken, $postToken)
  7. {
  8. $this->message = "Quoted String found between $prevToken and $postToken";
  9. }
  10. }