Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get rid of method mapping of BreakIterator classes | Máté Kocsis | 2020-02-25 | 1 | -1/+1 |
| | |||||
* | Use RETURN_THROWS() during ZPP in most of the extensions | Máté Kocsis | 2019-12-31 | 1 | -1/+1 |
| | | | | Except for some bigger ones: reflection, sodium, spl | ||||
* | Cleanup return values for Intl when parameter parsing is unsuccessful | Máté Kocsis | 2019-10-30 | 1 | -1/+1 |
| | | | | Closes GH-4871. | ||||
* | Remove mention of PHP major version in Copyright headers | Gabriel Caruso | 2019-09-25 | 1 | -2/+0 |
| | | | | Closes GH-4732. | ||||
* | Intl: Don't separately report "bad arguments" errors | Nikita Popov | 2019-03-11 | 1 | -2/+0 |
| | | | | | zpp will be throwing for these now, don't report them in addition to that. | ||||
* | Use ZEND_THIS macro to hide implementation details in extensions code. | Dmitry Stogov | 2018-11-15 | 1 | -1/+1 |
| | |||||
* | Eliminate useless $this related check | Dmitry Stogov | 2018-11-14 | 1 | -1/+1 |
| | |||||
* | first shot remove TSRMLS_* things | Anatol Belski | 2014-12-13 | 1 | -1/+1 |
| | |||||
* | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
| | |||||
* | master renames phase 1 | Anatol Belski | 2014-08-25 | 1 | -1/+1 |
| | |||||
* | basic macro replacements, all at once | Anatol Belski | 2014-08-19 | 1 | -1/+1 |
| | |||||
* | Remove compilation warning "warning: no newline at end of file" | Christopher Jones | 2013-08-20 | 1 | -1/+1 |
| | |||||
* | Added IntlCodePointBreakIterator. | Gustavo André dos Santos Lopes | 2012-06-22 | 1 | -0/+44 |
Objects of this class can be instantiated with IntlBreakIterator::createCodePointInstance() The method does not take a locale, as it would not make sense in this context. This class has one additional method: long IntlCodePointIterator::getLastCodePoint() which returns either -1 or the last code point we moved over, if any (and discounting any movement before the last call to IntlBreakIterator::first() or IntlBreakIterator::last()). |