function DocParser::Identifier

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php \Drupal\Component\Annotation\Doctrine\DocParser::Identifier()
  2. 8.9.x core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php \Drupal\Component\Annotation\Doctrine\DocParser::Identifier()
  3. 10 core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php \Drupal\Component\Annotation\Doctrine\DocParser::Identifier()

Identifier ::= string

Return value

string

2 calls to DocParser::Identifier()
DocParser::Annotation in core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php
Annotation ::= "@" AnnotationName MethodCall AnnotationName ::= QualifiedName | SimpleName QualifiedName ::= NameSpacePart "\" {NameSpacePart "\"}* SimpleName NameSpacePart ::= identifier | null | false |…
DocParser::Constant in core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php
Constant ::= integer | string | float | boolean

File

core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php, line 982

Class

DocParser
A parser for docblock annotations.

Namespace

Drupal\Component\Annotation\Doctrine

Code

private function Identifier() {
    // check if we have an annotation
    if (!$this->lexer
        ->isNextTokenAny(self::$classIdentifiers)) {
        $this->syntaxError('namespace separator or identifier');
    }
    $this->lexer
        ->moveNext();
    $className = $this->lexer->token['value'];
    while (null !== $this->lexer->lookahead && $this->lexer->lookahead['position'] === $this->lexer->token['position'] + strlen($this->lexer->token['value']) && $this->lexer
        ->isNextToken(DocLexer::T_NAMESPACE_SEPARATOR)) {
        $this->match(DocLexer::T_NAMESPACE_SEPARATOR);
        $this->matchAny(self::$classIdentifiers);
        $className .= '\\' . $this->lexer->token['value'];
    }
    return $className;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.