使用is进行测试后,PhpStorm类型提示对象阵列失败

我在迭代数组之前用is_array()测试数组时遇到了Phpstorm类型提示处理对象数组的问题。

任何人都可以点亮一下为什么is_array()删除对象的类型提示?

$test = new Test();
$testers = $test->getAll();

// Type hinting WORKS for $test
foreach($testers as $test) {
    $test->getId(); // Type hinting works
}

// Type hinting does NOT work for $test
if(is_array($testers)) {
    foreach($testers as $test) {
        $test->getId(); // Type hinting does NOT work
    }
}

如果我在检索数组的地方添加类型提示注释,我可以让类型提示工作,但这是不可取的,因为我希望Phpstorm使用对象方法返回类型提示信息,而不必一直指定它:

即使在存在is_array时,也可以添加这个函数/ ** @var Tester [] $ testters * / $ testers = $ test-> getAll();

如果有人想要运行该示例,可以使用测试类代码:

class Tester {
    private $id;
    private $name;

    public function __construct($id, $name) {
        $this->id = $id;
        $this->name = $name;
    }

    /**
     * @return Integer
     */
    public function getId() {
        return $this->id;
    }

    /**
     * @return String
     */
    public function getName() {
        return $this->name;
    }

}

class Test {
    /**
     * @return tester[]
     */
    public function getAll() {
        $testers = array(
            new Tester(1, 'Bob'),
            new Tester(2, 'Jane'),
            new Tester(3, 'Tim')
        );
        return $testers;
    }
}
链接地址: http://www.djcxy.com/p/58623.html

上一篇: PhpStorm type hinting array of objects fails after testing with is

下一篇: member variables and @var phpdoc type hinting