$pos =
$this->
findInitialTokenPosition($input);
if ($pos === null
) { return array
();
} $this->context =
$context;
$this->lexer->
setInput(trim(substr($input,
$pos), '* /'
));
$this->lexer->
moveNext();
return $this->
Annotations();
} /**
* Finds the first valid annotation
*
* @param string $input The docblock string to parse
*
* @return int|null
*/
private function findInitialTokenPosition($input) {