1

How might I hint at what $this is in the context of a Magento template, with a DocBlock?

As an example, head.phtml within the template/page/html/ directory is an object of Mage_Page_Block_Html_Head. The method I tried was:

<?php
/**
 * @var $this Mage_Page_Block_Html_Head
 */
?>

Unfortunately, it doesn't seem my IDE (NetBeans) is picking up on the hint. So my question is if there is a correct way of doing this so that NetBeans recognizes the hint.

4

1 に答える 1

2

Netbeans はそれを受け入れる必要があります。少なくとも私のバージョン 6.9 では

/* @var $this Bar */

これを行います:

ここに画像の説明を入力

これは、インクルード シナリオの例です (周りにクラスはありません)。

単一行 - 単一アスタリスク - タイプの - コメントを使用するように注意してください。

また、Netbeans がインデックスを更新したことにも注意してください。あなたの場合のように:

この場合、NetBeans は変更をスキャンする必要がありましたが、これは自動的に行われると想定していました。[...]。私の場合、定期的にのみスキャンします。


Docblock 変数ヒント関連:

于 2012-11-26T16:27:08.187 に答える