Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

LocalTooLong.php

Namespace

Egulias\EmailValidator\Warning

File

vendor/egulias/email-validator/src/Warning/LocalTooLong.php

View source
<?php

namespace Egulias\EmailValidator\Warning;

class LocalTooLong extends Warning {
    public const CODE = 64;
    public const LOCAL_PART_LENGTH = 64;
    public function __construct() {
        $this->message = 'Local part is too long, exceeds 64 chars (octets)';
        $this->rfcNumber = 5322;
    }

}

Classes

Title Deprecated Summary
LocalTooLong

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal