blob: 78f53c85c8b58a3f2862cb2592522a37b8a348f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Allow abstract function override
--FILE--
<?php
abstract class A { abstract function bar($x); }
abstract class B extends A { abstract function bar($x, $y = 0); }
echo "DONE";
?>
--EXPECT--
DONE
|