diff options
author | Stanislav Malyshev <stas@php.net> | 2014-06-08 13:50:41 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2014-06-08 13:50:41 -0700 |
commit | da6abc8db4de42cb8dd4b6c7e13bce339c4b320f (patch) | |
tree | f306199173ef707f70dc38ad9e58fc616ba95924 /ext/reflection | |
parent | a53b884c47dfdcd47b87caff6abf6ed6ba155ce3 (diff) | |
parent | 5fd7c2b01ddfcf932f364dc7065e7b0dd492655e (diff) | |
download | php-git-da6abc8db4de42cb8dd4b6c7e13bce339c4b320f.tar.gz |
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4:
Remove superfluous echos.
Diffstat (limited to 'ext/reflection')
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/reflection/tests/ReflectionFunction_isClosure_basic.phpt b/ext/reflection/tests/ReflectionFunction_isClosure_basic.phpt index eeaf8d382c..368464e130 100644 --- a/ext/reflection/tests/ReflectionFunction_isClosure_basic.phpt +++ b/ext/reflection/tests/ReflectionFunction_isClosure_basic.phpt @@ -13,6 +13,6 @@ if (!extension_loaded('reflection') || !defined('PHP_VERSION_ID') || PHP_VERSION <?php $closure = function($param) { return "this is a closure"; }; $rc = new ReflectionFunction($closure); -echo var_dump($rc->isClosure()); +var_dump($rc->isClosure()); --EXPECTF-- bool(true) diff --git a/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt b/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt index 31d37a85f1..4148fada0c 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) diff --git a/ext/reflection/tests/ReflectionFunction_isDisabled_basic.phpt b/ext/reflection/tests/ReflectionFunction_isDisabled_basic.phpt index c71b96b8ef..30189cf4de 100644 --- a/ext/reflection/tests/ReflectionFunction_isDisabled_basic.phpt +++ b/ext/reflection/tests/ReflectionFunction_isDisabled_basic.phpt @@ -12,6 +12,6 @@ disable_functions=is_file --FILE-- <?php $rc = new ReflectionFunction('is_file'); -echo var_dump($rc->isDisabled()); +var_dump($rc->isDisabled()); --EXPECTF-- bool(true) |