common.stub.php 443 B

123456789101112131415161718192021
  1. <?php
  2. /** @generate-class-entries */
  3. class IntlIterator implements Iterator
  4. {
  5. /** @tentative-return-type */
  6. public function current(): mixed {}
  7. /** @tentative-return-type */
  8. public function key(): mixed {}
  9. /** @tentative-return-type */
  10. public function next(): void {}
  11. /** @tentative-return-type */
  12. public function rewind(): void {}
  13. /** @tentative-return-type */
  14. public function valid(): bool {}
  15. }