mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
13 lines
278 B
PHP
13 lines
278 B
PHP
--TEST--
|
|
ReflectionFunction::isDeprecated
|
|
--CREDITS--
|
|
Stefan Koopmanschap <stefan@phpgg.nl>
|
|
TestFest PHP|Tek
|
|
--FILE--
|
|
<?php
|
|
// We currently don't have any deprecated functions :/
|
|
$rc = new ReflectionFunction('var_dump');
|
|
var_dump($rc->isDeprecated());
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|