1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00
This commit is contained in:
Nikita Popov
2017-06-25 22:28:56 +02:00
parent 8e10c9d373
commit 9dfcb04f10
2 changed files with 3 additions and 3 deletions
@@ -7,4 +7,4 @@ function test(object $obj = 42) { }
?>
--EXPECTF--
Fatal error: Default value for parameters with a object type can only be NULL in %s on line %d
Fatal error: Default value for parameters with an object type can only be NULL in %s on line %d
+2 -2
View File
@@ -5570,8 +5570,8 @@ void zend_compile_params(zend_ast *ast, zend_ast *return_type_ast) /* {{{ */
case IS_OBJECT:
zend_error_noreturn(E_COMPILE_ERROR, "Default value for parameters "
"with a %s type can only be NULL",
zend_get_type_by_const(ZEND_TYPE_CODE(arg_info->type)), zend_get_type_by_const(ZEND_TYPE_CODE(arg_info->type)));
"with an object type can only be NULL",
zend_get_type_by_const(ZEND_TYPE_CODE(arg_info->type)));
break;
default: