Expand description
PHPDoc comment parser.
Parses /** ... */ doc-block comments into a structured PhpDoc
representation with summary, description, and typed tags.
§Usage
use php_ast::{CommentKind, PhpDoc};
let text = "/** @param int $x The value */";
let doc = php_rs_parser::phpdoc::parse(text);
assert_eq!(doc.tags.len(), 1);