17 lines
221 B
PHP
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)
|