1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/intl/common/common.stub.php
Máté Kocsis f00bcfbb7d Generate method entries for ext/intl
Closes GH-5370
2020-04-14 13:39:00 +02:00

22 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() {}
}