IPV6ColonStart.php 264 B

1234567891011121314
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class IPV6ColonStart extends Warning
  4. {
  5. const CODE = 76;
  6. public function __construct()
  7. {
  8. $this->message = ':: found at the start of the domain literal';
  9. $this->rfcNumber = 5322;
  10. }
  11. }