ru_php/ext/reflection/tests/ReflectionFunction_isDeprecated_userland.phpt

17 lines
221 B
PHP

--TEST--
ReflectionClassConstant::isDeprecated() with userland functions.
--FILE--
<?php
#[\Deprecated]
function test() {
}
$r = new ReflectionFunction('test');
var_dump($r->isDeprecated());
?>
--EXPECTF--
bool(true)