mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
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>
18 lines
261 B
PHP
18 lines
261 B
PHP
--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)
|