PhpStorm / PhpDoc类型提示在魔法对象中返回变量

前端之家收集整理的这篇文章主要介绍了PhpStorm / PhpDoc类型提示在魔法对象中返回变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个类测试,它getData返回一个神奇的方法上下文中出现的对象变量.

我的问题是如何正确地使用ohintovat到IDE并且PHPdoc被告知是正确的.我想让PHPStorm了解他作为输出变量返回的内容.可以?

class Test
{

    /**
     * @param $param
     * @return object
     */
    function getData($param)
    {

        // .......

        $data = (object)[
            'a' => 'aaa','b' => 'bbb',];

        return $data;
    }

}


$test = new Test();
$data = $test->getData('param');

echo $data->

enter image description here

解决方法

我建议你使用额外的模型类来解决它.

enter image description here

原文链接:/phpstorm/626633.html

猜你在找的Phpstorm相关文章