| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The reference PHPDoc parser for TypeLang. It turns a raw /** ... */ comment into an immutable, iterable object graph of its description and tags.
Full documentation is available at typelang.dev.
Install the package via Composer:
composer require type-lang/phpdocRequirements:
DocBlockParser::parse() returns a DocBlock — an immutable collection of the comment's description and tags:
use TypeLang\PhpDoc\DocBlockParser;
$parser = new DocBlockParser();
$block = $parser->parse(<<<'PHPDOC'
/**
* Sends a notification to the given recipient.
*
* @see Mailer::send() The underlying transport.
* @link https://example.com/docs Delivery documentation.
* @return bool
*/
PHPDOC);
// The leading description (everything before the first tag)
echo $block->description;
// "Sends a notification to the given recipient."
// Tags form an ordered, countable, iterable collection
echo \count($block); // 3
foreach ($block as $tag) {
echo $tag->name; // "see", "link", "return"
}
// Known tags expose their parsed parts
$see = $block[0]; // SeeTag
echo $see->reference; // "Mailer::send()"A DocBlock is composed of three kinds of elements:
See the documentation for the full list of supported tags.
| Back | FazBrowse Home | New Git URL |