|
1 | 1 | /* This is a generated file, edit the .stub.php file instead.
|
2 |
| - * Stub hash: 6a121ed9817667820f05677a772781d6b788796b */ |
| 2 | + * Stub hash: 9e9dc1cd1302038f351f6075393494d1a58f0d74 */ |
3 | 3 |
|
4 | 4 | ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlBreakIterator_createCharacterInstance, 0, 0, 0)
|
5 | 5 | ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, locale, IS_STRING, 1, "null")
|
@@ -72,8 +72,6 @@ ZEND_END_ARG_INFO()
|
72 | 72 |
|
73 | 73 | #define arginfo_class_IntlRuleBasedBreakIterator_getRuleStatusVec arginfo_class_IntlBreakIterator_createCodePointInstance
|
74 | 74 |
|
75 |
| -#define arginfo_class_IntlPartsIterator_getBreakIterator arginfo_class_IntlBreakIterator_createCodePointInstance |
76 |
| - |
77 | 75 | #define arginfo_class_IntlCodePointBreakIterator_getLastCodePoint arginfo_class_IntlBreakIterator_createCodePointInstance
|
78 | 76 |
|
79 | 77 |
|
@@ -104,7 +102,6 @@ ZEND_METHOD(IntlRuleBasedBreakIterator, getBinaryRules);
|
104 | 102 | ZEND_METHOD(IntlRuleBasedBreakIterator, getRules);
|
105 | 103 | ZEND_METHOD(IntlRuleBasedBreakIterator, getRuleStatus);
|
106 | 104 | ZEND_METHOD(IntlRuleBasedBreakIterator, getRuleStatusVec);
|
107 |
| -ZEND_METHOD(IntlPartsIterator, getBreakIterator); |
108 | 105 | ZEND_METHOD(IntlCodePointBreakIterator, getLastCodePoint);
|
109 | 106 |
|
110 | 107 |
|
@@ -145,13 +142,39 @@ static const zend_function_entry class_IntlRuleBasedBreakIterator_methods[] = {
|
145 | 142 | };
|
146 | 143 |
|
147 | 144 |
|
148 |
| -static const zend_function_entry class_IntlPartsIterator_methods[] = { |
149 |
| - ZEND_ME(IntlPartsIterator, getBreakIterator, arginfo_class_IntlPartsIterator_getBreakIterator, ZEND_ACC_PUBLIC) |
150 |
| - ZEND_FE_END |
151 |
| -}; |
152 |
| - |
153 |
| - |
154 | 145 | static const zend_function_entry class_IntlCodePointBreakIterator_methods[] = {
|
155 | 146 | ZEND_ME(IntlCodePointBreakIterator, getLastCodePoint, arginfo_class_IntlCodePointBreakIterator_getLastCodePoint, ZEND_ACC_PUBLIC)
|
156 | 147 | ZEND_FE_END
|
157 | 148 | };
|
| 149 | + |
| 150 | +zend_class_entry *register_class_IntlBreakIterator(zend_class_entry *class_entry_IteratorAggregate) |
| 151 | +{ |
| 152 | + zend_class_entry ce, *class_entry; |
| 153 | + |
| 154 | + INIT_CLASS_ENTRY(ce, "IntlBreakIterator", class_IntlBreakIterator_methods); |
| 155 | + class_entry = zend_register_internal_class_ex(&ce, NULL); |
| 156 | + zend_class_implements(class_entry, 1, class_entry_IteratorAggregate); |
| 157 | + |
| 158 | + return class_entry; |
| 159 | +} |
| 160 | + |
| 161 | +zend_class_entry *register_class_IntlRuleBasedBreakIterator(zend_class_entry *class_entry_IntlBreakIterator) |
| 162 | +{ |
| 163 | + zend_class_entry ce, *class_entry; |
| 164 | + |
| 165 | + INIT_CLASS_ENTRY(ce, "IntlRuleBasedBreakIterator", class_IntlRuleBasedBreakIterator_methods); |
| 166 | + class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlBreakIterator); |
| 167 | + |
| 168 | + return class_entry; |
| 169 | +} |
| 170 | + |
| 171 | +zend_class_entry *register_class_IntlCodePointBreakIterator(zend_class_entry *class_entry_IntlBreakIterator) |
| 172 | +{ |
| 173 | + zend_class_entry ce, *class_entry; |
| 174 | + |
| 175 | + INIT_CLASS_ENTRY(ce, "IntlCodePointBreakIterator", class_IntlCodePointBreakIterator_methods); |
| 176 | + class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlBreakIterator); |
| 177 | + |
| 178 | + return class_entry; |
| 179 | +} |
| 180 | + |
0 commit comments