diff options
Diffstat (limited to 'ext/tidy/tidy_arginfo.h')
-rw-r--r-- | ext/tidy/tidy_arginfo.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/ext/tidy/tidy_arginfo.h b/ext/tidy/tidy_arginfo.h index 45f824865b..30c9f1af69 100644 --- a/ext/tidy/tidy_arginfo.h +++ b/ext/tidy/tidy_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: c4bbc901ca156da7cf0cbcc3c4019c7d3886959f */ + * Stub hash: 75995fe0aad02540f1bde99495a188ae4ab7c0ac */ ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(arginfo_tidy_parse_string, 0, 1, tidy, MAY_BE_FALSE) ZEND_ARG_TYPE_INFO(0, string, IS_STRING, 0) @@ -281,3 +281,24 @@ static const zend_function_entry class_tidyNode_methods[] = { ZEND_ME(tidyNode, getParent, arginfo_class_tidyNode_getParent, ZEND_ACC_PUBLIC) ZEND_FE_END }; + +static zend_class_entry *register_class_tidy(void) +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "tidy", class_tidy_methods); + class_entry = zend_register_internal_class_ex(&ce, NULL); + + return class_entry; +} + +static zend_class_entry *register_class_tidyNode(void) +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "tidyNode", class_tidyNode_methods); + class_entry = zend_register_internal_class_ex(&ce, NULL); + class_entry->ce_flags |= ZEND_ACC_FINAL; + + return class_entry; +} |