Mercurial > hg > isophonics-drupal-site
view vendor/egulias/email-validator/EmailValidator/Warning/LocalTooLong.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
line wrap: on
line source
<?php namespace Egulias\EmailValidator\Warning; class LocalTooLong extends Warning { const CODE = 64; const LOCAL_PART_LENGTH = 64; public function __construct() { $this->message = 'Local part is too long, exceeds 64 chars (octets)'; $this->rfcNumber = 5322; } }