summaryrefslogtreecommitdiff
path: root/ext/curl/curl_arginfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/curl/curl_arginfo.h')
-rw-r--r--ext/curl/curl_arginfo.h35
1 files changed, 34 insertions, 1 deletions
diff --git a/ext/curl/curl_arginfo.h b/ext/curl/curl_arginfo.h
index e6bb94b7b4..6485c33fba 100644
--- a/ext/curl/curl_arginfo.h
+++ b/ext/curl/curl_arginfo.h
@@ -1,5 +1,5 @@
/* This is a generated file, edit the .stub.php file instead.
- * Stub hash: f1d616c644ad366405816cde0384f6f391773ebf */
+ * Stub hash: b0f2f56d0a38656637190456e5ebd87bf052ee14 */
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_curl_close, 0, 1, IS_VOID, 0)
ZEND_ARG_OBJ_INFO(0, handle, CurlHandle, 0)
@@ -241,3 +241,36 @@ static const zend_function_entry class_CurlMultiHandle_methods[] = {
static const zend_function_entry class_CurlShareHandle_methods[] = {
ZEND_FE_END
};
+
+static zend_class_entry *register_class_CurlHandle(void)
+{
+ zend_class_entry ce, *class_entry;
+
+ INIT_CLASS_ENTRY(ce, "CurlHandle", class_CurlHandle_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;
+}
+
+static zend_class_entry *register_class_CurlMultiHandle(void)
+{
+ zend_class_entry ce, *class_entry;
+
+ INIT_CLASS_ENTRY(ce, "CurlMultiHandle", class_CurlMultiHandle_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;
+}
+
+static zend_class_entry *register_class_CurlShareHandle(void)
+{
+ zend_class_entry ce, *class_entry;
+
+ INIT_CLASS_ENTRY(ce, "CurlShareHandle", class_CurlShareHandle_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;
+}