mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
21 lines
443 B
PHP
21 lines
443 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
class IntlIterator implements Iterator
|
|
{
|
|
/** @tentative-return-type */
|
|
public function current(): mixed {}
|
|
|
|
/** @tentative-return-type */
|
|
public function key(): mixed {}
|
|
|
|
/** @tentative-return-type */
|
|
public function next(): void {}
|
|
|
|
/** @tentative-return-type */
|
|
public function rewind(): void {}
|
|
|
|
/** @tentative-return-type */
|
|
public function valid(): bool {}
|
|
}
|