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

Breadcrumb

  1. Drupal Core 11.1.x
  2. EmailParser.php

function EmailParser::processLocalPart

1 call to EmailParser::processLocalPart()
EmailParser::parseLeftFromAt in vendor/egulias/email-validator/src/EmailParser.php

File

vendor/egulias/email-validator/src/EmailParser.php, line 54

Class

EmailParser

Namespace

Egulias\EmailValidator

Code

private function processLocalPart() : Result {
    $localPartParser = new LocalPart($this->lexer);
    $localPartResult = $localPartParser->parse();
    $this->localPart = $localPartParser->localPart();
    $this->warnings = [
        $localPartParser->getWarnings(),
        $this->warnings,
    ];
    return $localPartResult;
}

API Navigation

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