I'm having a little problem with Netbeans and code completion. Here is a straightforward example :
/**
* @param SomeClass[] $param Simple array of SomeClass elements
*/
public function func(array $param) {
$param[0]->..
}
In this sample, the code completion does not work. The problem comes from the array $param which "overwrite" the phpdoc declaration and thus i don't have code completion for my class anymore.
Is this a bug or made i a mistake ?