Community
Participate
Working Groups
In the following example: public function method1() { $table = ...; /* @var $table Class1 */ ... } public function method2() { $table = ...; /* @var $table Class2 */ $table. ... } completion for the second $table shows method of Class1 instead of Class2
fixed
Full example: <?php class Class1 { function test1() { ; } } class Class2 { function test2() { ; } } class Class3 { public function method1() { $table = ""; /* @var $table Class1 */ } public function method2() { $table = ""; /* @var $table Class2 */ $table->| //here should propose test2 } }
Verified. Closing. Ilina Stefanova Thanks, Zhao