mirror of
https://github.com/php/php-src.git
synced 2026-04-23 16:08:35 +02:00
19 lines
282 B
PHP
19 lines
282 B
PHP
--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
|