1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00
Files
archived-php-src/ext/intl/breakiterator/breakiterator_iterators.stub.php
2022-08-09 11:19:23 +02:00

30 lines
626 B
PHP

<?php
/** @generate-class-entries */
/** @not-serializable */
class IntlPartsIterator extends IntlIterator
{
/**
* @var int
* @cvalue PARTS_ITERATOR_KEY_SEQUENTIAL
*/
public const KEY_SEQUENTIAL = UNKNOWN;
/**
* @var int
* @cvalue PARTS_ITERATOR_KEY_LEFT
*/
public const KEY_LEFT = UNKNOWN;
/**
* @var int
* @cvalue PARTS_ITERATOR_KEY_RIGHT
*/
public const KEY_RIGHT = UNKNOWN;
/** @tentative-return-type */
public function getBreakIterator(): IntlBreakIterator {}
/** @tentative-return-type */
public function getRuleStatus(): int {}
}