blob: 042eec7435516b60b86f6fe4bbaae0b17ed358df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Ensure private methods with the same name are not checked for inheritance rules - abstract
--FILE--
<?php
class A {
private function test() {}
}
abstract class B extends A {
abstract function test();
}
echo 'OK';
?>
--EXPECT--
OK
|