在其他类中,PhpStorm 可以识别__construct()
函数,但在 yaf 控制器中无法识别初始化方法init()
,导致init()
无法跟踪初始化操作。
class TestController extends Yaf_Controller_Abstract{
private $model;
public function init() {
$this->model = new TestModel();
}
public function test(){
$this->model->testDeclaration();
}
}
class TestModel{
public function testDeclaration(){
}
}
在这个例子中,我想go to declaration
在测试函数$this->model->testDeclaration();
中使用 ' 'testDeclaration()
在TestModel
类中运行。但它不起作用。
PhpStorm 告诉我:
找不到要前往的声明
如何在这里正确使用“去申报”?