标签: cakephp phpstorm cakephp-3.0
如何在 PHPStorm 中为 CakePHP 模板启用自动完成功能。
例如$this文件中的Helpers及其函数*.ctp ...等等
$this
Helpers
*.ctp
答案 0 :(得分:3)
只需在视图代码上添加类型提示注释:
<?php /* @var $this \App\View\AppView */
对于记录,在以前命名空间的CakePHP / 2.x中,它曾经是:
<?php /* @var $this View */