1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
--TEST-- Bug #72119 (Interface declaration compatibility regression with default values) --FILE-- <?php interface Foo { public function bar(array $baz = null); } class Hello implements Foo { public function bar(array $baz = []) { } } echo "OK\n"; ?> --EXPECT-- OK