CFWSWithFWS.php 237 B

12345678910111213
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class CFWSWithFWS extends Warning
  4. {
  5. const CODE = 18;
  6. public function __construct()
  7. {
  8. $this->message = 'Folding whites space followed by folding white space';
  9. }
  10. }