Community
Participate
Working Groups
Use a code like this: <?php class AAA{ public function abc(){ echo "123"; } } class BBB{ public $yyy; function __construct(){ $this->yyy = new AAA(); } } $zzz = new BBB(); $zzz->| // Here wait for Auto activation of the Content assist (should be enabled in Preferences) Expected result: To suggest $yyy (or automatically add it, if option is enabled) OR: $zzz->yyy->| // Not working here as well. Expected: to suggest/add 'abc()' function In both cases using Ctrl+Space brings the Content assist, or adds the only one option.
Created attachment 181609 [details] patch
fixed in head Contributed by Xu,thanks!
change status
*** Bug 326488 has been marked as a duplicate of this bug. ***
Verified.