php-src/ext/reflection/tests/bug26695.phpt
Marcus Boerger 76ae4e10bf Fix test
2004-03-30 21:13:05 +00:00

25 lines
380 B
PHP
Executable File

--TEST--
Bug #26695 (Reflection API does not recognize mixed-case class hints)
--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===