@@ -1682,19 +1682,19 @@ ZEND_API ZEND_COLD void ZEND_FASTCALL zend_argument_value_error(uint32_t arg_num
1682
1682
#define Z_PARAM_STR_OR_LONG_OR_NULL (dest_str , dest_long , is_null ) \
1683
1683
Z_PARAM_STR_OR_LONG_EX(dest_str, dest_long, is_null, 1);
1684
1684
1685
- #define Z_PARAM_STR_OR_OBJECT_EX (dest_str , dest_object , allow_null ) \
1685
+ #define Z_PARAM_STR_OR_OBJ_EX (dest_str , dest_object , allow_null ) \
1686
1686
Z_PARAM_PROLOGUE(0, 0); \
1687
- if (UNEXPECTED(!zend_parse_arg_str_or_object (_arg, &dest_str, &dest_object, allow_null))) { \
1687
+ if (UNEXPECTED(!zend_parse_arg_str_or_obj (_arg, &dest_str, &dest_object, allow_null))) { \
1688
1688
_expected_type = allow_null ? Z_EXPECTED_STRING_OR_OBJECT_OR_NULL : Z_EXPECTED_STRING_OR_OBJECT; \
1689
1689
_error_code = ZPP_ERROR_WRONG_ARG; \
1690
1690
break; \
1691
1691
}
1692
1692
1693
- #define Z_PARAM_STR_OR_OBJECT (dest_str , dest_object ) \
1694
- Z_PARAM_STR_OR_OBJECT_EX (dest_str, dest_object, 0);
1693
+ #define Z_PARAM_STR_OR_OBJ (dest_str , dest_object ) \
1694
+ Z_PARAM_STR_OR_OBJ_EX (dest_str, dest_object, 0);
1695
1695
1696
- #define Z_PARAM_STR_OR_OBJECT_OR_NULL (dest_str , dest_object ) \
1697
- Z_PARAM_STR_OR_OBJECT_EX (dest_str, dest_object, 1);
1696
+ #define Z_PARAM_STR_OR_OBJ_OR_NULL (dest_str , dest_object ) \
1697
+ Z_PARAM_STR_OR_OBJ_EX (dest_str, dest_object, 1);
1698
1698
1699
1699
/* End of new parameter parsing API */
1700
1700
@@ -1954,7 +1954,7 @@ static zend_always_inline int zend_parse_arg_str_or_long(zval *arg, zend_string
1954
1954
return 1 ;
1955
1955
}
1956
1956
1957
- static zend_always_inline int zend_parse_arg_str_or_object (
1957
+ static zend_always_inline int zend_parse_arg_str_or_obj (
1958
1958
zval * arg , zend_string * * dest_str , zend_object * * dest_object , int allow_null
1959
1959
) {
1960
1960
if (EXPECTED (Z_TYPE_P (arg ) == IS_STRING )) {
0 commit comments