php-src/ext/reflection/tests/bug47254.phpt

45 lines
818 B
Plaintext
Raw Normal View History

2009-08-26 17:17:58 +00:00
--TEST--
Bug #47254
--CREDITS--
Sebastian Schürmann
sebs@php.net
Testfest 2009 Munich
--FILE--
<?php
class A
{
protected function a() {}
2018-09-16 17:16:42 +00:00
2009-08-26 17:17:58 +00:00
}
class B extends A
{
public function b() {}
}
$B = new B();
$R = new ReflectionObject($B);
$m = $R->getMethods();
print_r($m);
?>
2015-03-31 14:10:06 +00:00
--EXPECTF--
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; A has a deprecated constructor in %s on line %d
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; B has a deprecated constructor in %s on line %d
2009-08-26 17:17:58 +00:00
Array
(
[0] => ReflectionMethod Object
(
[name] => b
[class] => B
)
[1] => ReflectionMethod Object
(
[name] => a
[class] => A
)
)