CodeExplorer TokenIterator example
return null;
} if (null ===
$reflectionConstructor =
$reflectionClass->
getConstructor()) { return null;
} if (!
$rawDocNode =
$reflectionConstructor->
getDocComment()) { return null;
} $tokens =
new TokenIterator($this->lexer->
tokenize($rawDocNode));
$phpDocNode =
$this->phpDocParser->
parse($tokens);
$tokens->
consumeTokenType(Lexer::TOKEN_END
);
return $this->
filterDocBlockParams($phpDocNode,
$property);
} private function filterDocBlockParams(PhpDocNode
$docNode, string
$allowedParam): ?ParamTagValueNode
{ $tags =
array_values(array_filter($docNode->
getTagsByName('@param'
),
fn ($tagNode) =>
$tagNode instanceof PhpDocTagNode
&& ('$'.
$allowedParam) ===
$tagNode->value->parameterName
));
if (!
$tags) {