Files
php-src/ext/reflection/tests/ReflectionFunction_isDeprecated_userland.phpt
Benjamin Eberlei 72c874691b RFC: Add #[\Deprecated] Attribute (#11293)
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>
2024-07-02 09:44:25 +02:00

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)