使用列表时,我可以为SomeObject数组提供类型提示吗?

时间:2015-07-15 15:10:51

标签: php phpstorm type-hinting

我有一个生成SomeObject[]数组的方法。

/**
 * @return SomeObject[]
 */
private function thatMethod()
{
    ...
    return [$someObject, $someOtherObject, $yetAnotherObject]
}

然而,当我通过list

读取对象时
list($someObject, $someOtherObject, $yetAnotherObject) = $this->thatMethod();

我丢失了这些对象的typehint。我必须通过@var SomeObject $someObject明确键入它们。我宁愿不这样做。

在PhpStorm9中使用list时,有没有办法让typehints工作?

1 个答案:

答案 0 :(得分:2)

PhpStorm目前无法做到这一点。

需要照顾ticket。明星/投票/评论以获得进展通知。