summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
blob: f8d476ae462da10a9eb11a15dd4f7ebbd167510d (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)