Community
Participate
Working Groups
Build Identifier: Build id: 20100617-1415 The example in the Steps to reproduce hereunder is easier to understand that any textual description... Reproducible: Always Steps to Reproduce: Try to Open Declaration (F3) on the methods call in this example. <?php class superA{ protected function a(){} public function aa(){} } class superB extends superA{ protected function b(){ $this->a();// this works $this->aa(); // this works } } class superC extends superB{ protected function c(){ $this->a(); // this won't work $this->aa(); // this won't work $this->b(); // this works } }
maybe it has been fixed I could not reproduce it using the latest code from head
No longer reproducible. Closing... Kalin Yanev kalin.a@zend.com