diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-17 13:42:42 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-22 15:24:03 +0100 |
commit | 4c6533c257cfabd5dd78988bb277f410b2778140 (patch) | |
tree | 81f77c32eb3daf8012427417801b9a66afce8f41 /ext/standard/basic_functions_arginfo.h | |
parent | d03be8bf8613571965ec5c033f6dcd607346352a (diff) | |
download | php-git-4c6533c257cfabd5dd78988bb277f410b2778140.tar.gz |
Generate class entries from stubs for com, standard, xmlreader, xmlwriter, xsl, zip, Zend
Closes GH-6706
Diffstat (limited to 'ext/standard/basic_functions_arginfo.h')
-rw-r--r-- | ext/standard/basic_functions_arginfo.h | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/ext/standard/basic_functions_arginfo.h b/ext/standard/basic_functions_arginfo.h index 1c7f6b00ec..f44a322267 100644 --- a/ext/standard/basic_functions_arginfo.h +++ b/ext/standard/basic_functions_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: e9f39cbc595f0f2cdd84e58d4857f9fdb03ff7b7 */ + * Stub hash: 97edf8c87780c892984099e52ad1c6c745b919f8 */ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_set_time_limit, 0, 1, _IS_BOOL, 0) ZEND_ARG_TYPE_INFO(0, seconds, IS_LONG, 0) @@ -3491,3 +3491,34 @@ static const zend_function_entry ext_functions[] = { #endif ZEND_FE_END }; + + +static const zend_function_entry class___PHP_Incomplete_Class_methods[] = { + ZEND_FE_END +}; + + +static const zend_function_entry class_AssertionError_methods[] = { + ZEND_FE_END +}; + +static zend_class_entry *register_class___PHP_Incomplete_Class(void) +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "__PHP_Incomplete_Class", class___PHP_Incomplete_Class_methods); + class_entry = zend_register_internal_class_ex(&ce, NULL); + class_entry->ce_flags |= ZEND_ACC_FINAL; + + return class_entry; +} + +static zend_class_entry *register_class_AssertionError(zend_class_entry *class_entry_Error) +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "AssertionError", class_AssertionError_methods); + class_entry = zend_register_internal_class_ex(&ce, class_entry_Error); + + return class_entry; +} |