ru_php/ext/reflection/tests/ReflectionConstant_isDeprecated_userland.phpt

14 lines
241 B
Plaintext
Raw Permalink Normal View History

--TEST--
ReflectionConstant::isDeprecated() from attribute
--FILE--
<?php
#[Deprecated]
const CT_CONST = 42;
$reflectionConstant = new ReflectionConstant('CT_CONST');
var_dump($reflectionConstant->isDeprecated());
?>
--EXPECT--
bool(true)