QuotedPart.php 350 B

1234567891011121314151617
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class QuotedPart extends Warning
  4. {
  5. const CODE = 36;
  6. /**
  7. * @param scalar $prevToken
  8. * @param scalar $postToken
  9. */
  10. public function __construct($prevToken, $postToken)
  11. {
  12. $this->message = "Deprecated Quoted String found between $prevToken and $postToken";
  13. }
  14. }