--TEST-- Bug #21888 (protected property and protected method of the same name) --FILE-- prot(); } public function viewMom() { print $this->prot; } } $c = new child(); $c->callMom(); $c->viewMom(); ?> --EXPECT-- protected method protected property