DotAtStart.php 157 B

123456789
  1. <?php
  2. namespace Egulias\EmailValidator\Exception;
  3. class DotAtStart extends InvalidEmail
  4. {
  5. const CODE = 141;
  6. const REASON = "Found DOT at start";
  7. }