2020-06-19 17:40:31 +08:00
|
|
|
/* This is a generated file, edit the .stub.php file instead.
|
2021-07-06 16:55:43 +08:00
|
|
|
* Stub hash: c4698dbe96a069a63265052e9a105f074e3dda0a */
|
2019-10-15 04:02:22 +08:00
|
|
|
|
2021-07-06 16:55:43 +08:00
|
|
|
ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(arginfo_class_IntlIterator_current, 0, 0, IS_MIXED, 0)
|
2019-10-15 04:02:22 +08:00
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
#define arginfo_class_IntlIterator_key arginfo_class_IntlIterator_current
|
|
|
|
|
2021-07-06 16:55:43 +08:00
|
|
|
ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(arginfo_class_IntlIterator_next, 0, 0, IS_VOID, 0)
|
|
|
|
ZEND_END_ARG_INFO()
|
2019-10-15 04:02:22 +08:00
|
|
|
|
2021-07-06 16:55:43 +08:00
|
|
|
#define arginfo_class_IntlIterator_rewind arginfo_class_IntlIterator_next
|
2019-10-15 04:02:22 +08:00
|
|
|
|
2021-07-06 16:55:43 +08:00
|
|
|
ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(arginfo_class_IntlIterator_valid, 0, 0, _IS_BOOL, 0)
|
|
|
|
ZEND_END_ARG_INFO()
|
2020-04-12 20:03:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
ZEND_METHOD(IntlIterator, current);
|
|
|
|
ZEND_METHOD(IntlIterator, key);
|
|
|
|
ZEND_METHOD(IntlIterator, next);
|
|
|
|
ZEND_METHOD(IntlIterator, rewind);
|
|
|
|
ZEND_METHOD(IntlIterator, valid);
|
|
|
|
|
|
|
|
|
|
|
|
static const zend_function_entry class_IntlIterator_methods[] = {
|
|
|
|
ZEND_ME(IntlIterator, current, arginfo_class_IntlIterator_current, ZEND_ACC_PUBLIC)
|
|
|
|
ZEND_ME(IntlIterator, key, arginfo_class_IntlIterator_key, ZEND_ACC_PUBLIC)
|
|
|
|
ZEND_ME(IntlIterator, next, arginfo_class_IntlIterator_next, ZEND_ACC_PUBLIC)
|
|
|
|
ZEND_ME(IntlIterator, rewind, arginfo_class_IntlIterator_rewind, ZEND_ACC_PUBLIC)
|
|
|
|
ZEND_ME(IntlIterator, valid, arginfo_class_IntlIterator_valid, ZEND_ACC_PUBLIC)
|
|
|
|
ZEND_FE_END
|
|
|
|
};
|
2021-01-26 18:50:36 +08:00
|
|
|
|
2021-02-16 05:14:36 +08:00
|
|
|
static zend_class_entry *register_class_IntlIterator(zend_class_entry *class_entry_Iterator)
|
2021-01-26 18:50:36 +08:00
|
|
|
{
|
|
|
|
zend_class_entry ce, *class_entry;
|
|
|
|
|
|
|
|
INIT_CLASS_ENTRY(ce, "IntlIterator", class_IntlIterator_methods);
|
|
|
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
|
|
|
zend_class_implements(class_entry, 1, class_entry_Iterator);
|
|
|
|
|
|
|
|
return class_entry;
|
|
|
|
}
|