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

时间:2016-06-16 18:16:39

标签: php phpstorm type-hinting hint

我有一个类测试,它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

1 个答案:

答案 0 :(得分:0)

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

enter image description here