IPV6DoubleColon.php 255 B

1234567891011121314
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class IPV6DoubleColon extends Warning
  4. {
  5. const CODE = 73;
  6. public function __construct()
  7. {
  8. $this->message = 'Double colon found after IPV6 tag';
  9. $this->rfcNumber = 5322;
  10. }
  11. }