summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
diff options
context:
space:
mode:
authorOndřej Surý <ondrej@sury.org>2014-06-27 15:14:42 +0200
committerOndřej Surý <ondrej@sury.org>2014-06-27 15:14:42 +0200
commit3ca6d1dd5d8c32b17a52b0fa965c5eba28f368ed (patch)
treeb4d659bad0443456239557ae3e08e953ead97494 /ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
parent675f42e16d209ea58fdaa63f7f45581a264e86c4 (diff)
downloadphp-upstream/5.5.14+dfsg.tar.gz
New upstream version 5.5.14+dfsgupstream/5.5.14+dfsg
Diffstat (limited to 'ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt')
-rw-r--r--ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt b/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
index 31d37a85f..4148fada0 100644
--- a/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
+++ b/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
@@ -10,6 +10,6 @@ if (!extension_loaded('reflection') || !defined('PHP_VERSION_ID') || PHP_VERSION
--FILE--
<?php
$rc = new ReflectionFunction('ereg');
-echo var_dump($rc->isDeprecated());
+var_dump($rc->isDeprecated());
--EXPECTF--
bool(true)