php-src/ext/reflection/tests/bug47254.phpt
2020-02-03 22:52:20 +01:00

42 lines
512 B
PHP

--TEST--
Bug #47254
--CREDITS--
Sebastian Schürmann
sebs@php.net
Testfest 2009 Munich
--FILE--
<?php
class A
{
protected function a() {}
}
class B extends A
{
public function b() {}
}
$B = new B();
$R = new ReflectionObject($B);
$m = $R->getMethods();
print_r($m);
?>
--EXPECT--
Array
(
[0] => ReflectionMethod Object
(
[name] => b
[class] => B
)
[1] => ReflectionMethod Object
(
[name] => a
[class] => A
)
)