saxulum/saxulum-phpdoc-generator

此包已被弃用且不再维护。未建议替代包。

Saxulum PhpDoc 生成器

1.0-rc1 2015-02-07 18:49 UTC

This package is auto-updated.

Last update: 2020-09-22 19:08:55 UTC


README

Build Status Total Downloads Latest Stable Version Scrutinizer Code Quality

功能

此库允许基于对象生成 PhpDoc。

要求

  • php: >=5.3

安装

通过 Composersaxulum/saxulum-phpdoc-generator 方式安装。

使用

查看原始的 phpDocumentor 文档

代码

$documentor = new Documentor(array(
    new ParamRow('string', 'name'),
    new ReturnRow('string'),
));

输出

/**
 * @param string $name
 * @return string
 */