我在PhpStorm中遇到了一个问题.我有一个代码:
/**
* $this->data['rows'] My_Class[]
*/
public function countRows(){
foreach($this->data['rows'] as $row){
$row->(here i want to get all functions in a class with autocomplete)
}
}
在这里,我试图通过PhpStorm自动完成帮助程序来访问Class函数,但这不起作用.
如何使用PHPDoc定义一些变量精确的类或类型?
解决方法:
您可以直接使用/ ** @var MyClass $row * / PHPDoc注释输入提示$row变量:
foreach($this->data['rows'] as $row){
/** @var MyClass $row */
$row->(here i want to get all functions in a class with autocomplete)
}