1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/reflection/tests/bug26695.phpt
2024-07-10 16:47:31 +02:00

25 lines
507 B
PHP

--TEST--
Reflection 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());
?>
--EXPECTF--
Deprecated: Method ReflectionParameter::getClass() is deprecated since 8.0, use ReflectionParameter::getType() instead in %s on line %d
string(3) "Foo"