mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01: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.
13 lines
262 B
PHP
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 {}
|
|
}
|