Namespace auto completion Follow
Hi,
I am using PHPStorm EAP 102.18 on windows 7 64 bit OS with JRE 1.6.0_22.
The following code doesn't provide any auto completion (the application runs correctly on the browser)
$bug = new Application\Entity\Bug();
$bug-> {{ctrl+space}}
All properties and methods are public.
also I tried
$bug = new \Application\Entity\Bug();
or
use \Application\Entity\Bug
$bug = new Bug();
$bug-> {{ctrl+space}}
or
use \Application\Entity\Bug
$bug = new Bug();
$bug-> {{ctrl+space}}
Also autocompletion for namespace doesnt work either
use \App{{ctrl+space}}
expecting "Application"
Am I missing something?
Please sign in to leave a comment.
Not sure.
Please file a bug into project tracker http://youtrack.jetbrains.net/issues/WI and we'll investigate your problem.