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