gpt4 book ai didi

phpdoc - 覆盖 PHPDoc 中的返回类型

转载 作者:行者123 更新时间:2023-12-04 02:08:58 25 4
gpt4 key购买 nike

我有一个类Abc with 方法(主体不重要):

/**
* @return SomeBaseClass
*/
function getAll() { ... }

Abc的 child 类叫 AbcChild我只想重新定义返回类的类型,以便在 Netbeans 中正确查看它。我可以在不重新定义方法的情况下做到这一点吗:
/**
* @return SomeClass
*/
function getAll() { return parent::getAll(); }

最佳答案

尝试这样的事情:

/**
* @method SomeClass getAll()
*/
class AbcChild
{
// ....
}

More info about @method

关于phpdoc - 覆盖 PHPDoc 中的返回类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20422601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com