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