NetBeans 魔术方法签名和自动完成;更改默认参数名称
快速说明:
我仍然是一名 NetBeans 业余爱好者,但我很快就爱上了它。无论如何,运行 7.0 进行 PHP 开发,我想知道是否可以更改 PHP 魔术方法的方法签名。
例如,作为惯例,我(几乎)总是使用 $key
作为 __get()
的参数,而不是自动生成的$名称
。
因此,在 Ctrl + Space 并选择方法 __get()
后,它会生成:
public function __get($name){
;
}
How can I change $name
到 $key
?我猜它是从核心 PHPDoc 或其他东西中提取的,所以可能没有办法改变它,但如果有的话,我很想知道如何改变。
Quick one:
I'm still a NetBeans amateur, however I've grown very fond of it very quickly. Anyways, running 7.0 for PHP development, and I'm wondering if its possible to change the method signatures of PHP's magic-methods.
For instance, as a convention I (almost) always use $key
as the parameter for __get()
, as opposed to the auto-generated $name
.
So after Ctrl + Space and selecting the method __get()
it produces:
public function __get($name){
;
}
How can I change $name
to $key
? I'm guessing it's pulling from a core PHPDoc or something, so there may be not way to change this, but if there is, I'd love to know how.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是这是硬编码的。基本上是不可能定制的。但您可以对 Bugzilla 进行增强。
Unfortunately this is hard coded. It's basically not possible to customize it. But you can fire an enhancement to the Bugzilla.