PHPdoc:记录可链接方法?

发布于 2024-12-01 20:17:09 字数 372 浏览 1 评论 0原文

我应该如何正确使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回忆那么伤 2024-12-08 20:17:09
/**
* @return myClass
*/

我不是 phpDoc 专家,但他们在 Zend 框架中就是这样做的。所以我认为这是可靠的

/**
* @return myClass
*/

I'm not a phpDoc expert but's that's how they do it in Zend framework. So I think it's reliable

捂风挽笑 2024-12-08 20:17:09

我更喜欢

/**
* @return $this
*/

I prefer

/**
* @return $this
*/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文