UnclosedComment.php 175 B

123456789
  1. <?php
  2. namespace Egulias\EmailValidator\Exception;
  3. class UnclosedComment extends InvalidEmail
  4. {
  5. const CODE = 146;
  6. const REASON = "No colosing comment token found";
  7. }