Community
Participate
Working Groups
Check the following examples: <?php namespace foo; use bar\baz; class X { public function doSomething(baz\Hello $hello) { // Autocompletion will not suggest members/methods of \bar\baz\Hello class $hello-> /*no suggestions here */ } } And: <?php namespace foo; use bar\baz; class X { /** * @param \bar\baz\Hello $hello */ public function doSomething(baz\Hello $hello) { // Autocompletion will not suggest members/methods of \bar\baz\Hello class $hello-> /* no suggestions here either */ } }
newer bug 517863 have better description. In general PDT completely ignore class_alias calls *** This bug has been marked as a duplicate of bug 517863 ***
wrong ID *** This bug has been marked as a duplicate of bug 522550 ***