summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug26695.phpt
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-03-30 21:13:05 +0000
committerMarcus Boerger <helly@php.net>2004-03-30 21:13:05 +0000
commit76ae4e10bf9eff230db84482b178706f8427fa51 (patch)
treeccfcafa7809269e53587c3f9bc8b77013f66014f /ext/reflection/tests/bug26695.phpt
parent1ffa3cf65d74488c3fc432d0c80817960f7f4c74 (diff)
downloadphp-git-76ae4e10bf9eff230db84482b178706f8427fa51.tar.gz
Fix test
Diffstat (limited to 'ext/reflection/tests/bug26695.phpt')
-rwxr-xr-xext/reflection/tests/bug26695.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/tests/bug26695.phpt b/ext/reflection/tests/bug26695.phpt
index e2eab7e147..859168f6ae 100755
--- a/ext/reflection/tests/bug26695.phpt
+++ b/ext/reflection/tests/bug26695.phpt
@@ -11,7 +11,7 @@ class Bar {
}
}
-$class = new Reflection_Class('bar');
+$class = new ReflectionClass('bar');
$methods = $class->getMethods();
$params = $methods[0]->getParameters();