CFWSNearAt.php 221 B

12345678910111213
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class CFWSNearAt extends Warning
  4. {
  5. const CODE = 49;
  6. public function __construct()
  7. {
  8. $this->message = "Deprecated folding white space near @";
  9. }
  10. }