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/msgformat/msgformat_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/msgformat/msgformat_arginfo.h')
| -rw-r--r-- | ext/intl/msgformat/msgformat_arginfo.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/ext/intl/msgformat/msgformat_arginfo.h b/ext/intl/msgformat/msgformat_arginfo.h index 3bad9aa498..958f7dd8ea 100644 --- a/ext/intl/msgformat/msgformat_arginfo.h +++ b/ext/intl/msgformat/msgformat_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: ece8c5157dc3a62ca2951d058b3c5497bb5cb836 */ + * Stub hash: 0d5b34913965434a4015e2b6ac7288edbbafc3f3 */ ZEND_BEGIN_ARG_INFO_EX(arginfo_class_MessageFormatter___construct, 0, 0, 2) ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 0) @@ -69,3 +69,14 @@ static const zend_function_entry class_MessageFormatter_methods[] = { ZEND_ME_MAPPING(getErrorMessage, msgfmt_get_error_message, arginfo_class_MessageFormatter_getErrorMessage, ZEND_ACC_PUBLIC) ZEND_FE_END }; + +zend_class_entry *register_class_MessageFormatter() +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "MessageFormatter", class_MessageFormatter_methods); + class_entry = zend_register_internal_class_ex(&ce, NULL); + + return class_entry; +} + |
