1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-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

13 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 {}
}