private function DocParser::Arrayx

Array ::= "{" ArrayEntry {"," ArrayEntry}* [","] "}"

Return value

array

1 call to DocParser::Arrayx()
DocParser::PlainValue in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/DocParser.php
PlainValue ::= integer | string | float | boolean | Array | Annotation

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/DocParser.php, line 927

Class

DocParser
A parser for docblock annotations.

Namespace

Doctrine\Common\Annotations

Code

private function Arrayx() {
  $array = $values = array();
  $this
    ->match(DocLexer::T_OPEN_CURLY_BRACES);
  $values[] = $this
    ->ArrayEntry();
  while ($this->lexer
    ->isNextToken(DocLexer::T_COMMA)) {
    $this
      ->match(DocLexer::T_COMMA);

    // optional trailing comma
    if ($this->lexer
      ->isNextToken(DocLexer::T_CLOSE_CURLY_BRACES)) {
      break;
    }
    $values[] = $this
      ->ArrayEntry();
  }
  $this
    ->match(DocLexer::T_CLOSE_CURLY_BRACES);
  foreach ($values as $value) {
    list($key, $val) = $value;
    if ($key !== null) {
      $array[$key] = $val;
    }
    else {
      $array[] = $val;
    }
  }
  return $array;
}