summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/009.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/009.phpt')
-rw-r--r--ext/reflection/tests/009.phpt4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/reflection/tests/009.phpt b/ext/reflection/tests/009.phpt
index 09df90c8c3..d582623cbd 100644
--- a/ext/reflection/tests/009.phpt
+++ b/ext/reflection/tests/009.phpt
@@ -14,7 +14,7 @@ function test ($a, $b = 1, $c = "") {
$func = new ReflectionFunction("test");
-var_dump($func->export("test"));
+echo $func;
echo "--getName--\n";
var_dump($func->getName());
echo "--isInternal--\n";
@@ -60,8 +60,6 @@ Function [ <user> function test ] {
Parameter #2 [ <optional> $c = '' ]
}
}
-
-NULL
--getName--
string(4) "test"
--isInternal--