Community
Participate
Working Groups
Build Identifier: I20100608-0911 <?php /** * test * Enter description here ... * @author Administrator * @property T $t * */ class test { function __set($name,$value) { return $this->$name = $value; } public function yes() { $this->t->test(); //OK } } class T { function test() { return false; } } class notWork extends test{ function not() { $this->t-> //Typing in $t-> does not tell me about the test method. } } ?> Reproducible: Always
fixed already in branch/head (I can't remember the original bug but you will be able to see it fixed in next releases)
Verified. Closing...