Netbeans 7.0 has nice code completion for PHP variables:

enter image description here

How can I get it to give me code completion for internal class variables as well?

enter image description here

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The inline "var" hints only work for single variables.

If dummyItems is a member of your class, specify its type in the declaration, ie

class MyClass
{
    /**
     * @var DatapodItems
     */
    private $dummyItems;
link|improve this answer
thanks, that works! – Edward Tanguay Sep 7 '11 at 2:16
be sure to include TWO stars on the first line which is not included by default in netbeans if you just type "/*" RETURN. – Edward Tanguay Sep 10 '11 at 4:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.