summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/010.phpt
blob: 8a08d9a788cc1c8e8a542518397b5207bc96abf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
ReflectionMethod::__toString() tests (overriden method)
--SKIPIF--
<?php extension_loaded('reflection') or die('skip'); ?>
--FILE--
<?php
class Foo {
	function func() {
	}
}
class Bar extends Foo {
	function func() {
	}
}
$m = new ReflectionMethod("Bar::func");
echo $m;
?>
--EXPECTF--
Method [ <user, overwrites Foo, prototype Foo> public method func ] {
  @@ %s010.php 7 - 8
}