LabelTooLong.php 233 B

1234567891011121314
  1. <?php
  2. namespace Egulias\EmailValidator\Warning;
  3. class LabelTooLong extends Warning
  4. {
  5. const CODE = 63;
  6. public function __construct()
  7. {
  8. $this->message = 'Label too long';
  9. $this->rfcNumber = 5322;
  10. }
  11. }