如何正确使用PHPdoc来记录类中的可链接方法,如下例所示 - 正确的用法是什么?
class myClass {
/**
* @return myClass
*/
function one()
{
return $this;
}
/**
* @return self
*/
function two()
{
return $this;
}
/**
* @return $this
*/
function three()
{
return $this;
}
}
答案 0 :(得分:6)
/**
* @return myClass
*/
我不是phpDoc专家,但这就是他们在Zend框架中的表现。所以我觉得它很可靠
答案 1 :(得分:0)
我更喜欢
/**
* @return $this
*/