diff options
author | Marcus Boerger <helly@php.net> | 2004-03-30 21:13:05 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-03-30 21:13:05 +0000 |
commit | 76ae4e10bf9eff230db84482b178706f8427fa51 (patch) | |
tree | ccfcafa7809269e53587c3f9bc8b77013f66014f /ext/reflection/tests/bug26695.phpt | |
parent | 1ffa3cf65d74488c3fc432d0c80817960f7f4c74 (diff) | |
download | php-git-76ae4e10bf9eff230db84482b178706f8427fa51.tar.gz |
Fix test
Diffstat (limited to 'ext/reflection/tests/bug26695.phpt')
-rwxr-xr-x | ext/reflection/tests/bug26695.phpt | 2 |
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(); |