@@ -1630,19 +1630,19 @@ ZEND_API ZEND_COLD void ZEND_FASTCALL zend_argument_value_error(uint32_t arg_num
1630
1630
#define Z_PARAM_STR_OR_LONG_OR_NULL (dest_str , dest_long , is_null ) \
1631
1631
Z_PARAM_STR_OR_LONG_EX(dest_str, dest_long, is_null, 1);
1632
1632
1633
- #define Z_PARAM_STR_OR_OBJECT_EX (dest_str , dest_object , allow_null ) \
1633
+ #define Z_PARAM_STR_OR_OBJ_EX (dest_str , dest_object , allow_null ) \
1634
1634
Z_PARAM_PROLOGUE(0, 0); \
1635
- if (UNEXPECTED(!zend_parse_arg_str_or_object (_arg, &dest_str, &dest_object, allow_null))) { \
1635
+ if (UNEXPECTED(!zend_parse_arg_str_or_obj (_arg, &dest_str, &dest_object, allow_null))) { \
1636
1636
_expected_type = allow_null ? Z_EXPECTED_STRING_OR_OBJECT_OR_NULL : Z_EXPECTED_STRING_OR_OBJECT; \
1637
1637
_error_code = ZPP_ERROR_WRONG_ARG; \
1638
1638
break; \
1639
1639
}
1640
1640
1641
- #define Z_PARAM_STR_OR_OBJECT (dest_str , dest_object ) \
1642
- Z_PARAM_STR_OR_OBJECT_EX (dest_str, dest_object, 0);
1641
+ #define Z_PARAM_STR_OR_OBJ (dest_str , dest_object ) \
1642
+ Z_PARAM_STR_OR_OBJ_EX (dest_str, dest_object, 0);
1643
1643
1644
- #define Z_PARAM_STR_OR_OBJECT_OR_NULL (dest_str , dest_object ) \
1645
- Z_PARAM_STR_OR_OBJECT_EX (dest_str, dest_object, 1);
1644
+ #define Z_PARAM_STR_OR_OBJ_OR_NULL (dest_str , dest_object ) \
1645
+ Z_PARAM_STR_OR_OBJ_EX (dest_str, dest_object, 1);
1646
1646
1647
1647
/* End of new parameter parsing API */
1648
1648
@@ -1902,7 +1902,7 @@ static zend_always_inline int zend_parse_arg_str_or_long(zval *arg, zend_string
1902
1902
return 1 ;
1903
1903
}
1904
1904
1905
- static zend_always_inline int zend_parse_arg_str_or_object (
1905
+ static zend_always_inline int zend_parse_arg_str_or_obj (
1906
1906
zval * arg , zend_string * * dest_str , zend_object * * dest_object , int allow_null
1907
1907
) {
1908
1908
if (EXPECTED (Z_TYPE_P (arg ) == IS_STRING )) {
0 commit comments