blob: 5643b2933f611b66de003ca446b94c265d1c457d (
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)
|