IPV6MaxGroups.php 269 B

1234567891011121314
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class IPV6MaxGroups extends Warning
  4. {
  5. const CODE = 75;
  6. public function __construct()
  7. {
  8. $this->message = 'Reached the maximum number of IPV6 groups allowed';
  9. $this->rfcNumber = 5321;
  10. }
  11. }