@@ -107,12 +107,12 @@ typedef struct _zend_fcall_info_cache {
107107#define ZEND_ARG_VARIADIC_TYPE_INFO (pass_by_ref , name , type_hint , allow_null ) { #name, ZEND_TYPE_ENCODE(type_hint, allow_null), pass_by_ref, 1 },
108108#define ZEND_ARG_VARIADIC_OBJ_INFO (pass_by_ref , name , classname , allow_null ) { #name, ZEND_TYPE_ENCODE_CLASS_CONST(#classname, allow_null), pass_by_ref, 1 },
109109
110-
111- #define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX (name , return_reference , required_num_args , classname , allow_null ) \
110+ #define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX (name , return_reference , required_num_args , class_name , allow_null ) \
112111 static const zend_internal_arg_info name[] = { \
113- { (const char*)(zend_uintptr_t)(required_num_args), ZEND_TYPE_ENCODE_CLASS_CONST(#classname, allow_null), return_reference, 0 },
112+ { (const char*)(zend_uintptr_t)(required_num_args), ZEND_TYPE_ENCODE_CLASS_CONST(#class_name, allow_null), return_reference, 0 },
113+
114114#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO (name , class_name , allow_null ) \
115- ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX (name, 0, -1, class_name, allow_null)
115+ ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX (name, 0, -1, class_name, allow_null)
116116
117117#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX (name , return_reference , required_num_args , type , allow_null ) \
118118 static const zend_internal_arg_info name[] = { \
0 commit comments