IPV6Deprecated.php 244 B

1234567891011121314
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class IPV6Deprecated extends Warning
  4. {
  5. const CODE = 13;
  6. public function __construct()
  7. {
  8. $this->message = 'Deprecated form of IPV6';
  9. $this->rfcNumber = 5321;
  10. }
  11. }