private function MethodCall(): array
{ $values =
[];
if (!
$this->lexer->
isNextToken(DocLexer::T_OPEN_PARENTHESIS
)) { return $values;
} $this->
match(DocLexer::T_OPEN_PARENTHESIS
);
if (!
$this->lexer->
isNextToken(DocLexer::T_CLOSE_PARENTHESIS
)) { $values =
$this->
Values();
} $this->
match(DocLexer::T_CLOSE_PARENTHESIS
);
return $values;
} /**
* Values ::= Array | Value {"," Value}* [","]
*
* @return mixed[]
*
* @throws AnnotationException
* @throws ReflectionException
*/