Netbeans PHP Function Parameter Tips

I looked around and found things that related to the problems associated with this, but not what I was looking for specifically.

I use Netbeans, which really grew up on me, but when I go to use the function, the "intellisense" hints appear correctly, but as soon as I switch to the type of arguments, the code hint that shows the function signature and its parameters disappear.

It hurts my productivity because I don’t have any signature entries, and I always have to refer to it when I print it.

Is this normal for Netbeans, or is there some way I can do this, so the function hints remain until I close the brackets for the function signature?

Update: I just found that Ctrl + P will show the parameter methods, is there a way to automatically display this, instead of constantly typing Ctrl + P?

+6
source share
2 answers

Apparently, turning off auto-closing of the bracket will allow you to correctly display intellisense and code hints.

+4
source

Inside the parentheses of the function, type Ctrl + P and a parameter prompt will appear (menu bar NetBeans β†’ Source β†’ Show Method Parameters).

+1
source

All Articles