php-src/ext/reflection/tests/bug26695.phpt
2005-08-15 14:37:55 +00:00

29 lines
421 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===
--UEXPECT--
unicode(3) "Foo"
===DONE===