diff options
Diffstat (limited to 'ext/reflection/tests/bug26695.phpt')
-rwxr-xr-x | ext/reflection/tests/bug26695.phpt | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/ext/reflection/tests/bug26695.phpt b/ext/reflection/tests/bug26695.phpt deleted file mode 100755 index 22619d4f1a..0000000000 --- a/ext/reflection/tests/bug26695.phpt +++ /dev/null @@ -1,27 +0,0 @@ ---TEST-- -Reflection Bug #26695 (Reflection API does not recognize mixed-case class hints) ---SKIPIF-- -<?php extension_loaded('reflection') or die('skip'); ?> ---FILE-- -<?php - -class Foo { -} - -class Bar { - function demo(foo $f) { - } -} - -$class = new ReflectionClass('bar'); -$methods = $class->getMethods(); -$params = $methods[0]->getParameters(); - -$class = $params[0]->getClass(); - -var_dump($class->getName()); -?> -===DONE=== ---EXPECT-- -string(3) "Foo" -===DONE===
\ No newline at end of file |