@@ -6262,12 +6262,11 @@ ZEND_END_ARG_INFO()
6262
6262
6263
6263
static const zend_function_entry reflection_functions [] = {
6264
6264
ZEND_ME (reflection , getModifierNames , arginfo_reflection_getModifierNames , ZEND_ACC_PUBLIC |ZEND_ACC_STATIC )
6265
- ZEND_ME (reflection , export , arginfo_reflection_export , ZEND_ACC_PUBLIC |ZEND_ACC_STATIC )
6265
+ ZEND_DEP_ME (reflection , export , arginfo_reflection_export , ZEND_ACC_PUBLIC |ZEND_ACC_STATIC )
6266
6266
PHP_FE_END
6267
6267
};
6268
6268
6269
6269
static const zend_function_entry reflector_functions [] = {
6270
- ZEND_FENTRY (export , NULL , NULL , ZEND_ACC_STATIC |ZEND_ACC_ABSTRACT |ZEND_ACC_PUBLIC )
6271
6270
ZEND_ABSTRACT_ME (reflector , __toString , arginfo_reflection__void )
6272
6271
PHP_FE_END
6273
6272
};
@@ -6322,7 +6321,7 @@ static const zend_function_entry reflection_function_abstract_functions[] = {
6322
6321
static const zend_function_entry reflection_function_functions [] = {
6323
6322
ZEND_ME (reflection_function , __construct , arginfo_reflection_function___construct , 0 )
6324
6323
ZEND_ME (reflection_function , __toString , arginfo_reflection__void , 0 )
6325
- ZEND_ME (reflection_function , export , arginfo_reflection_function_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6324
+ ZEND_DEP_ME (reflection_function , export , arginfo_reflection_function_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6326
6325
ZEND_ME (reflection_function , isDisabled , arginfo_reflection__void , 0 )
6327
6326
ZEND_ME (reflection_function , invoke , arginfo_reflection_function_invoke , 0 )
6328
6327
ZEND_ME (reflection_function , invokeArgs , arginfo_reflection_function_invokeArgs , 0 )
@@ -6379,7 +6378,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_reflection_method_getClosure, 0)
6379
6378
ZEND_END_ARG_INFO ()
6380
6379
6381
6380
static const zend_function_entry reflection_method_functions [] = {
6382
- ZEND_ME (reflection_method , export , arginfo_reflection_method_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6381
+ ZEND_DEP_ME (reflection_method , export , arginfo_reflection_method_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6383
6382
ZEND_ME (reflection_method , __construct , arginfo_reflection_method___construct , 0 )
6384
6383
ZEND_ME (reflection_method , __toString , arginfo_reflection__void , 0 )
6385
6384
ZEND_ME (reflection_method , isPublic , arginfo_reflection__void , 0 )
@@ -6477,7 +6476,7 @@ ZEND_END_ARG_INFO()
6477
6476
6478
6477
static const zend_function_entry reflection_class_functions [] = {
6479
6478
ZEND_ME (reflection , __clone , arginfo_reflection__void , ZEND_ACC_PRIVATE |ZEND_ACC_FINAL )
6480
- ZEND_ME (reflection_class , export , arginfo_reflection_class_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6479
+ ZEND_DEP_ME (reflection_class , export , arginfo_reflection_class_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6481
6480
ZEND_ME (reflection_class , __construct , arginfo_reflection_class___construct , 0 )
6482
6481
ZEND_ME (reflection_class , __toString , arginfo_reflection__void , 0 )
6483
6482
ZEND_ME (reflection_class , getName , arginfo_reflection__void , 0 )
@@ -6544,7 +6543,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_reflection_object___construct, 0)
6544
6543
ZEND_END_ARG_INFO ()
6545
6544
6546
6545
static const zend_function_entry reflection_object_functions [] = {
6547
- ZEND_ME (reflection_object , export , arginfo_reflection_object_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6546
+ ZEND_DEP_ME (reflection_object , export , arginfo_reflection_object_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6548
6547
ZEND_ME (reflection_object , __construct , arginfo_reflection_object___construct , 0 )
6549
6548
PHP_FE_END
6550
6549
};
@@ -6580,7 +6579,7 @@ ZEND_END_ARG_INFO()
6580
6579
6581
6580
static const zend_function_entry reflection_property_functions [] = {
6582
6581
ZEND_ME (reflection , __clone , arginfo_reflection__void , ZEND_ACC_PRIVATE |ZEND_ACC_FINAL )
6583
- ZEND_ME (reflection_property , export , arginfo_reflection_property_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6582
+ ZEND_DEP_ME (reflection_property , export , arginfo_reflection_property_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6584
6583
ZEND_ME (reflection_property , __construct , arginfo_reflection_property___construct , 0 )
6585
6584
ZEND_ME (reflection_property , __toString , arginfo_reflection__void , 0 )
6586
6585
ZEND_ME (reflection_property , getName , arginfo_reflection__void , 0 )
@@ -6614,7 +6613,7 @@ ZEND_END_ARG_INFO()
6614
6613
6615
6614
static const zend_function_entry reflection_class_constant_functions [] = {
6616
6615
ZEND_ME (reflection , __clone , arginfo_reflection__void , ZEND_ACC_PRIVATE |ZEND_ACC_FINAL )
6617
- ZEND_ME (reflection_class_constant , export , arginfo_reflection_class_constant_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6616
+ ZEND_DEP_ME (reflection_class_constant , export , arginfo_reflection_class_constant_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6618
6617
ZEND_ME (reflection_class_constant , __construct , arginfo_reflection_class_constant___construct , 0 )
6619
6618
ZEND_ME (reflection_class_constant , __toString , arginfo_reflection__void , 0 )
6620
6619
ZEND_ME (reflection_class_constant , getName , arginfo_reflection__void , 0 )
@@ -6641,7 +6640,7 @@ ZEND_END_ARG_INFO()
6641
6640
6642
6641
static const zend_function_entry reflection_parameter_functions [] = {
6643
6642
ZEND_ME (reflection , __clone , arginfo_reflection__void , ZEND_ACC_PRIVATE |ZEND_ACC_FINAL )
6644
- ZEND_ME (reflection_parameter , export , arginfo_reflection_parameter_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6643
+ ZEND_DEP_ME (reflection_parameter , export , arginfo_reflection_parameter_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6645
6644
ZEND_ME (reflection_parameter , __construct , arginfo_reflection_parameter___construct , 0 )
6646
6645
ZEND_ME (reflection_parameter , __toString , arginfo_reflection__void , 0 )
6647
6646
ZEND_ME (reflection_parameter , getName , arginfo_reflection__void , 0 )
@@ -6689,7 +6688,7 @@ ZEND_END_ARG_INFO()
6689
6688
6690
6689
static const zend_function_entry reflection_extension_functions [] = {
6691
6690
ZEND_ME (reflection , __clone , arginfo_reflection__void , ZEND_ACC_PRIVATE |ZEND_ACC_FINAL )
6692
- ZEND_ME (reflection_extension , export , arginfo_reflection_extension_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6691
+ ZEND_DEP_ME (reflection_extension , export , arginfo_reflection_extension_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6693
6692
ZEND_ME (reflection_extension , __construct , arginfo_reflection_extension___construct , 0 )
6694
6693
ZEND_ME (reflection_extension , __toString , arginfo_reflection__void , 0 )
6695
6694
ZEND_ME (reflection_extension , getName , arginfo_reflection__void , 0 )
@@ -6712,7 +6711,7 @@ ZEND_END_ARG_INFO()
6712
6711
6713
6712
static const zend_function_entry reflection_zend_extension_functions [] = {
6714
6713
ZEND_ME (reflection , __clone , arginfo_reflection__void , ZEND_ACC_PRIVATE |ZEND_ACC_FINAL )
6715
- ZEND_ME (reflection_zend_extension , export , arginfo_reflection_extension_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6714
+ ZEND_DEP_ME (reflection_zend_extension , export , arginfo_reflection_extension_export , ZEND_ACC_STATIC |ZEND_ACC_PUBLIC )
6716
6715
ZEND_ME (reflection_zend_extension , __construct , arginfo_reflection_zend_extension___construct , 0 )
6717
6716
ZEND_ME (reflection_zend_extension , __toString , arginfo_reflection__void , 0 )
6718
6717
ZEND_ME (reflection_zend_extension , getName , arginfo_reflection__void , 0 )
0 commit comments