diff options
Diffstat (limited to 'Zend/zend_closures_arginfo.h')
-rw-r--r-- | Zend/zend_closures_arginfo.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Zend/zend_closures_arginfo.h b/Zend/zend_closures_arginfo.h index 1ccde0d6dd..3295ab2cf2 100644 --- a/Zend/zend_closures_arginfo.h +++ b/Zend/zend_closures_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: 0a2dd53716d30893aa5dd92a9907b2298abb3f70 */ + * Stub hash: 62da9b1e75331f30a0c63e82c9fd366e26b5724d */ ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Closure___construct, 0, 0, 0) ZEND_END_ARG_INFO() @@ -40,3 +40,15 @@ static const zend_function_entry class_Closure_methods[] = { ZEND_ME(Closure, fromCallable, arginfo_class_Closure_fromCallable, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC) ZEND_FE_END }; + +zend_class_entry *register_class_Closure() +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "Closure", class_Closure_methods); + class_entry = zend_register_internal_class_ex(&ce, NULL); + class_entry->ce_flags |= ZEND_ACC_FINAL; + + return class_entry; +} + |