blob: 38cdcd62b4578cde93e47b4c8ce39ddc94aa777a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
--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);
?>
--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
Array
(
[0] => ReflectionMethod Object
(
[name] => b
[class] => B
)
[1] => ReflectionMethod Object
(
[name] => a
[class] => A
)
)
|