Community
Participate
Working Groups
See the example code and note the comments: <?php class Foo { public $test; } class Bar { public function test() { $Foo = new Foo(); $Foo->test; // code assist works here $name = $Foo-> // code assist doesn't work here } } function test() { $Foo = new Foo(); $Foo->test; // code assist works $test = $Foo-> // code assist doesn't work } $Foo = new Foo(); $Foo->test; // code assist works $test = $Foo->test; // interestingly code assist works ?>
fixed in head
change status
Verified.