diff options
Diffstat (limited to 'ext/imap/php_imap_arginfo.h')
-rw-r--r-- | ext/imap/php_imap_arginfo.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/ext/imap/php_imap_arginfo.h b/ext/imap/php_imap_arginfo.h index f7f999e3d6..32e1e6987a 100644 --- a/ext/imap/php_imap_arginfo.h +++ b/ext/imap/php_imap_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: 2b4a654a6a247e59e3213715ecee9c7b837b0249 */ + * Stub hash: a1e3bdfdd48746db4743e1667d7ba53832160142 */ ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(arginfo_imap_open, 0, 3, IMAPConnection, MAY_BE_FALSE) ZEND_ARG_TYPE_INFO(0, mailbox, IS_STRING, 0) @@ -517,3 +517,15 @@ static const zend_function_entry ext_functions[] = { static const zend_function_entry class_IMAPConnection_methods[] = { ZEND_FE_END }; + +zend_class_entry *register_class_IMAPConnection() +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "IMAPConnection", class_IMAPConnection_methods); + class_entry = zend_register_internal_class_ex(&ce, NULL); + class_entry->ce_flags |= ZEND_ACC_FINAL|ZEND_ACC_NO_DYNAMIC_PROPERTIES; + + return class_entry; +} + |