diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-05 20:57:57 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-09 13:37:24 +0100 |
commit | c6723728dff93c6d4276d32cac7bf2b8465be93a (patch) | |
tree | 5885b48a16e37b21a00814ce91e763b8e81dc7c5 /ext/intl/php_intl_arginfo.h | |
parent | 99b08ac2817672c108149a65509c79baf261e819 (diff) | |
download | php-git-c6723728dff93c6d4276d32cac7bf2b8465be93a.tar.gz |
Generate ext/intl class entries from stubs
Closes GH-6670
Diffstat (limited to 'ext/intl/php_intl_arginfo.h')
-rw-r--r-- | ext/intl/php_intl_arginfo.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/ext/intl/php_intl_arginfo.h b/ext/intl/php_intl_arginfo.h index 57299b841f..6d52b53b57 100644 --- a/ext/intl/php_intl_arginfo.h +++ b/ext/intl/php_intl_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: c890e3cde79ffeade4623001cc369aa734812959 */ + * Stub hash: 9ddf3e4e42735c34a8b53a1856d6dc93346afc6f */ ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_intlcal_create_instance, 0, 0, IntlCalendar, 1) ZEND_ARG_INFO_WITH_DEFAULT_VALUE(0, timezone, "null") @@ -1165,3 +1165,19 @@ static const zend_function_entry ext_functions[] = { ZEND_FE(transliterator_get_error_message, arginfo_transliterator_get_error_message) ZEND_FE_END }; + + +static const zend_function_entry class_IntlException_methods[] = { + ZEND_FE_END +}; + +zend_class_entry *register_class_IntlException(zend_class_entry *class_entry_Exception) +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "IntlException", class_IntlException_methods); + class_entry = zend_register_internal_class_ex(&ce, class_entry_Exception); + + return class_entry; +} + |