php-src/ext/intl/breakiterator/breakiterator_iterators.stub.php
Nikita Popov a5ad9eeefa Add explicit IntlPartsIterator::getRuleStatus() method
Rather than doing a magic forward, explicitly add a forwarding
method. This must be the most frivolous use of get_method I've
ever seen.
2021-07-22 10:33:49 +02:00

12 lines
262 B
PHP

<?php
/** @generate-class-entries */
class IntlPartsIterator extends IntlIterator
{
/** @tentative-return-type */
public function getBreakIterator(): IntlBreakIterator {}
/** @tentative-return-type */
public function getRuleStatus(): int {}
}