NetBeans 魔术方法签名和自动完成;更改默认参数名称

发布于 2024-11-15 19:46:33 字数 499 浏览 2 评论 0原文

快速说明:

我仍然是一名 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

゛清羽墨安 2024-11-22 19:46:33

不幸的是这是硬编码的。基本上是不可能定制的。但您可以对 Bugzilla 进行增强。

Unfortunately this is hard coded. It's basically not possible to customize it. But you can fire an enhancement to the Bugzilla.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文