PHPdoc:记录可链接方法?
我应该如何正确使用 PHPdoc 来记录类中的可链接方法,如下面的示例所示 - 正确的用法是什么?
class myClass {
/**
* @return myClass
*/
function one()
{
return $this;
}
/**
* @return self
*/
function two()
{
return $this;
}
/**
* @return $this
*/
function three()
{
return $this;
}
}
How should I properly use PHPdoc to document chainable methods in a class, as seen in the below example - what is the correct usage?
class myClass {
/**
* @return myClass
*/
function one()
{
return $this;
}
/**
* @return self
*/
function two()
{
return $this;
}
/**
* @return $this
*/
function three()
{
return $this;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不是 phpDoc 专家,但他们在 Zend 框架中就是这样做的。所以我认为这是可靠的
I'm not a phpDoc expert but's that's how they do it in Zend framework. So I think it's reliable
我更喜欢
I prefer