PHPStorm にビュー ヘルパーのオートコンプリートの組み込みサポートがあるかどうか、またはそのプラグインを作成する可能性があるかどうかは誰にもわかりません。多くのビューヘルパーを使用すると面倒になるため、これにはインライン変数定義を使用したくありません
$this->inlineScript()-> //I want some autocomplete here.
$this->translate('some translation')-> //Please give me autocompletion
var 定義を使用すると、最終的には次のようになりますが、実際にはビューが乱雑になります。
/* @var $inlineScript \Zend\View\Helper\InlineScript */
$inlineScript = $this->inlineScript();
$inlineScript-> //Now I have autocompletion goodness
/* @var $translate \Zend\I18n\View\Helper\Translate */
$translate = $this->translate();
$translate('some translation')-> //Now I have autocompletion goodness