何时更新PHPdoc中的标签@author?

这真是一个新手问题。

我正在努力提高我的PHP技能,所以我正在阅读一些库的代码。 我注意到很多PHPdoc头文件(这是正确的名称吗?我的意思是:

 /**
 * @param  $config
 * @return bool
 * @author developer1
 */

)包含@author标记。

假设developer2对developer1的函数进行了巨大的改变,然后提交给github。 developer2应该更新@author标签吗?

常用的做法是什么?


phpDocumentor 2支持多个@author标签:

/**
 * Class User
 * @author Styx
 * @author second author
 * @package ApplicationModel
 */
class User
{
}

http://www.phpdoc.org/docs/latest/references/phpdoc/tags/author.html

链接地址: http://www.djcxy.com/p/82457.html

上一篇: when to update the tag @author in PHPdoc?

下一篇: How to set a custom keyboard for UIWebView