|
1 | 1 | /* This is a generated file, edit the .stub.php file instead.
|
2 |
| - * Stub hash: 7326163f8ce5340c12e74af72d47a8926eb39786 */ |
| 2 | + * Stub hash: 1dd70fdfc8a3403a0cb6b0ef71b818cb17ec1602 */ |
3 | 3 |
|
4 | 4 | ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_zend_test_array_return, 0, 0, IS_ARRAY, 0)
|
5 | 5 | ZEND_END_ARG_INFO()
|
@@ -71,6 +71,10 @@ ZEND_END_ARG_INFO()
|
71 | 71 | ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_zend_get_unit_enum, 0, 0, ZendTestUnitEnum, 0)
|
72 | 72 | ZEND_END_ARG_INFO()
|
73 | 73 |
|
| 74 | +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_zend_test_parameter_with_attribute, 0, 1, _IS_BOOL, 0) |
| 75 | + ZEND_ARG_TYPE_INFO(0, parameter, IS_STRING, 0) |
| 76 | +ZEND_END_ARG_INFO() |
| 77 | + |
74 | 78 | ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_ZendTestNS2_ZendSubNS_namespaced_func, 0, 0, _IS_BOOL, 0)
|
75 | 79 | ZEND_END_ARG_INFO()
|
76 | 80 |
|
@@ -116,6 +120,7 @@ static ZEND_FUNCTION(zend_weakmap_attach);
|
116 | 120 | static ZEND_FUNCTION(zend_weakmap_remove);
|
117 | 121 | static ZEND_FUNCTION(zend_weakmap_dump);
|
118 | 122 | static ZEND_FUNCTION(zend_get_unit_enum);
|
| 123 | +static ZEND_FUNCTION(zend_test_parameter_with_attribute); |
119 | 124 | static ZEND_FUNCTION(namespaced_func);
|
120 | 125 | static ZEND_METHOD(_ZendTestClass, is_object);
|
121 | 126 | static ZEND_METHOD(_ZendTestClass, __toString);
|
@@ -147,6 +152,7 @@ static const zend_function_entry ext_functions[] = {
|
147 | 152 | ZEND_FE(zend_weakmap_remove, arginfo_zend_weakmap_remove)
|
148 | 153 | ZEND_FE(zend_weakmap_dump, arginfo_zend_weakmap_dump)
|
149 | 154 | ZEND_FE(zend_get_unit_enum, arginfo_zend_get_unit_enum)
|
| 155 | + ZEND_FE(zend_test_parameter_with_attribute, arginfo_zend_test_parameter_with_attribute) |
150 | 156 | ZEND_NS_FE("ZendTestNS2\\ZendSubNS", namespaced_func, arginfo_ZendTestNS2_ZendSubNS_namespaced_func)
|
151 | 157 | ZEND_FE_END
|
152 | 158 | };
|
@@ -183,6 +189,11 @@ static const zend_function_entry class_ZendTestAttribute_methods[] = {
|
183 | 189 | };
|
184 | 190 |
|
185 | 191 |
|
| 192 | +static const zend_function_entry class_ZendTestParameterAttribute_methods[] = { |
| 193 | + ZEND_FE_END |
| 194 | +}; |
| 195 | + |
| 196 | + |
186 | 197 | static const zend_function_entry class_ZendTestUnitEnum_methods[] = {
|
187 | 198 | ZEND_FE_END
|
188 | 199 | };
|
@@ -314,6 +325,17 @@ static zend_class_entry *register_class_ZendTestAttribute(void)
|
314 | 325 | return class_entry;
|
315 | 326 | }
|
316 | 327 |
|
| 328 | +static zend_class_entry *register_class_ZendTestParameterAttribute(void) |
| 329 | +{ |
| 330 | + zend_class_entry ce, *class_entry; |
| 331 | + |
| 332 | + INIT_CLASS_ENTRY(ce, "ZendTestParameterAttribute", class_ZendTestParameterAttribute_methods); |
| 333 | + class_entry = zend_register_internal_class_ex(&ce, NULL); |
| 334 | + class_entry->ce_flags |= ZEND_ACC_FINAL; |
| 335 | + |
| 336 | + return class_entry; |
| 337 | +} |
| 338 | + |
317 | 339 | static zend_class_entry *register_class_ZendTestUnitEnum(void)
|
318 | 340 | {
|
319 | 341 | zend_class_entry *class_entry = zend_register_internal_enum("ZendTestUnitEnum", IS_UNDEF, class_ZendTestUnitEnum_methods);
|
|
0 commit comments