@@ -747,7 +747,7 @@ static void format_default_value(smart_str *str, const zval *value) {
747747}
748748
749749/* {{{ _parameter_string */
750- static void _parameter_string (smart_str * str , const zend_function * fptr , const struct _zend_arg_info * arg_info , uint32_t offset , bool required )
750+ static void _parameter_string (smart_str * str , const zend_function * fptr , const zend_arg_info * arg_info , uint32_t offset , bool required )
751751{
752752 smart_str_append_printf (str , "Parameter #%u [ " , offset );
753753 if (!required ) {
@@ -794,7 +794,7 @@ static void _parameter_string(smart_str *str, const zend_function *fptr, const s
794794/* {{{ _function_parameter_string */
795795static void _function_parameter_string (smart_str * str , const zend_function * fptr , const char * indent )
796796{
797- const struct _zend_arg_info * arg_info = fptr -> common .arg_info ;
797+ const zend_arg_info * arg_info = fptr -> common .arg_info ;
798798 if (!arg_info ) {
799799 return ;
800800 }
@@ -1416,7 +1416,7 @@ static void reflection_extension_factory(zval *object, zend_module_entry *module
14161416/* }}} */
14171417
14181418/* {{{ reflection_parameter_factory */
1419- static void reflection_parameter_factory (zend_function * fptr , zval * closure_object , const struct _zend_arg_info * arg_info , uint32_t offset , bool required , zval * object )
1419+ static void reflection_parameter_factory (zend_function * fptr , zval * closure_object , const zend_arg_info * arg_info , uint32_t offset , bool required , zval * object )
14201420{
14211421 object_init_ex (object , reflection_parameter_ptr );
14221422 reflection_object * intern = Z_REFLECTION_P (object );
@@ -2177,7 +2177,7 @@ ZEND_METHOD(ReflectionFunctionAbstract, getParameters)
21772177
21782178 GET_REFLECTION_OBJECT_PTR (fptr );
21792179
2180- const struct _zend_arg_info * arg_info = fptr -> common .arg_info ;
2180+ const zend_arg_info * arg_info = fptr -> common .arg_info ;
21812181 uint32_t num_args = fptr -> common .num_args ;
21822182 if (fptr -> common .fn_flags & ZEND_ACC_VARIADIC ) {
21832183 num_args ++ ;
@@ -2524,7 +2524,7 @@ ZEND_METHOD(ReflectionParameter, __construct)
25242524 }
25252525
25262526 /* Now, search for the parameter */
2527- const struct _zend_arg_info * arg_info = fptr -> common .arg_info ;
2527+ const zend_arg_info * arg_info = fptr -> common .arg_info ;
25282528 uint32_t num_args = fptr -> common .num_args ;
25292529 if (fptr -> common .fn_flags & ZEND_ACC_VARIADIC ) {
25302530 num_args ++ ;
0 commit comments