Netbeans 7.0 has nice code completion for PHP variables:
How can I get it to give me code completion for internal class variables as well?
Netbeans 7.0 has nice code completion for PHP variables:
How can I get it to give me code completion for internal class variables as well?
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;