summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
blob: 7b37b939e4176630c4d887ecddf775e7d3a9d3cd (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());
--EXPECTF--
bool(false)