summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
blob: 818d57e5f0d85c946333565fce4125d12a3cb0d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--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)