我在 CakePHP 2.2 应用程序中有一个控制器。
我使用 PhpStorm 4.0.1 作为 IDE。
在 MyController.php 文件中,我声明了这一点:
/**
* @property MyUtilComponent $MyUtil
*/
在我的控制器中,当我编写时,
$this->
我可以从下拉列表中选择“MyUtilComponent”。但是当我写的时候
$this->MyUtilComponent->
没有函数名选项来选择。当我写
$this->MyUtil->addThis();
然后单击addThis
单词并“转到声明”时,PhpStorm 成功进入方法的声明。
我应该怎么做才能让函数名自动完成?
注意:核心组件的行为相同。