1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 15:08:16 +02:00
Files
archived-php-src/ext/reflection/tests/gh9409.phpt
T
2022-09-08 10:43:25 +02:00

25 lines
475 B
PHP

--TEST--
GH-9409: Private method is incorrectly dumped as "overwrites"
--FILE--
<?php
class A {
private function privateMethod() {}
}
class C extends A {
private function privateMethod() {}
}
echo (new ReflectionClass('A'))->getMethod('privateMethod');
echo (new ReflectionClass('C'))->getMethod('privateMethod');
?>
--EXPECTF--
Method [ <user> private method privateMethod ] {
@@ %s %d - %d
}
Method [ <user> private method privateMethod ] {
@@ %s %d - %d
}