I do know several posts exists on Netbeans and autocompletion, but none seems to give me the answer to the basic problem i'm facing:
if i do so:
use Project\Foo;
$foo = new Foo;
$foo-> //autocompletes properly all the methods
but if do so:
use Project\Foo;
use Project\Bar;
$foo = $bar->getSomeObject();
$foo-> //doesn't show anything
I've been used to Visual Studio and VB .NET where the keyword AS simplifies the IDE to know which type to autocomplete
How can i explicitly inform Netebans autocompletion i'm manipulating a specific class ?
Any help or link to the same related topic would be much appreciated.