mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
Fix typo
This commit is contained in:
parent
8e10c9d373
commit
9dfcb04f10
@ -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
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user