summaryrefslogtreecommitdiff
path: root/ext/intl/common/common.stub.php
diff options
context:
space:
mode:
Diffstat (limited to 'ext/intl/common/common.stub.php')
-rw-r--r--ext/intl/common/common.stub.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/ext/intl/common/common.stub.php b/ext/intl/common/common.stub.php
new file mode 100644
index 0000000000..a0a8a20ffb
--- /dev/null
+++ b/ext/intl/common/common.stub.php
@@ -0,0 +1,21 @@
+<?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() {}
+}