php-src/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
2018-10-14 19:45:12 +02:00

13 lines
275 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)