PHPDoc - @ [item]在我的源代码中用于“const”语句?

时间:2011-10-11 11:44:29

标签: php comments phpdoc

如何使用PHPDoc标记常量?我应该用什么@ -tag?我想过@var,但这不合适。

2 个答案:

答案 0 :(得分:4)

简短的回答是没有一个。而且也不需要一个。文档生成器足够聪明,能够看到常量声明。所以只需将摘要放在那里,不要有任何@ -tags。这应该是你需要做的所有......

class foo {

    /** 
     * This constant does something that you need.
     */
    const FOO = 'bar';

}

答案 1 :(得分:0)

对于常量,您使用@type