mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
Fix typo
This commit is contained in:
@@ -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
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user