<?php class A { private function test($str = null) { echo $str; } } class B extends A { private function test() { echo 'b'; } } $b = new B();
You have javascript disabled. You will not be able to edit any code.