see https://wiki.php.net/rfc/deprecated_attribute Co-authored-by: Tim Düsterhus <tim@tideways-gmbh.com> Co-authored-by: Ilija Tovilo <ilija.tovilo@me.com>
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)
|