![]() ![]() | ![]() |
1.1 ! misho 1: --TEST-- ! 2: Bug #61761 ('Overriding' a private static method with a different signature causes crash) ! 3: --FILE-- ! 4: <?php ! 5: ! 6: class A ! 7: { ! 8: private static function test($a) { } ! 9: } ! 10: ! 11: class B extends A ! 12: { ! 13: private static function test($a, $b) { } ! 14: } ! 15: ! 16: ?> ! 17: ==DONE== ! 18: --EXPECTF-- ! 19: ==DONE==