我想用PhpDocumtor为我的代码创建文档
但我不知道PhpDoc中的PhpDocumtor要求标签
应该在我的代码中插入哪些标签?
我使用了以下标签:
@var
@return
答案 0 :(得分:1)
所有关于PhpDoc的文档都在这里:http://phpdoc.org/docs/latest/index.html
标签位于左侧。 一个使用示例。
/**
* Title text.
*
* Description text.
*
* @param string $arg Description.
* @return array The description for return.
*/
function somefn($arg){
return (array) $arg;
}