mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

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.
12 lines
262 B
PHP
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 {}
|
|
}
|