ru_php/ext/reflection/tests/ReflectionClassConstant_isDeprecated_userland.phpt

18 lines
261 B
Plaintext
Raw Permalink Normal View History

--TEST--
ReflectionClassConstant::isDeprecated() with userland constants.
--FILE--
<?php
class Clazz {
#[\Deprecated]
public const TEST = 'test';
}
$r = new ReflectionClassConstant('Clazz', 'TEST');
var_dump($r->isDeprecated());
?>
--EXPECTF--
bool(true)