File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ parameters:
27
27
- CallbackFilterIterator
28
28
- FilterIterator
29
29
- RecursiveCallbackFilterIterator
30
+ - AppendIterator
30
31
explicitMixedInUnknownGenericNew : false
31
32
explicitMixedViaIsArray : false
32
33
arrayFilter : false
Original file line number Diff line number Diff line change @@ -275,3 +275,26 @@ class RecursiveArrayIterator extends ArrayIterator implements RecursiveIterator
275
275
*/
276
276
public function uksort($cmp_function) { }
277
277
}
278
+
279
+
280
+ /**
281
+ * @template TKey of array-key
282
+ * @template TValue
283
+ * @template TIterator as Iterator<TKey, TValue>
284
+ *
285
+ * @template-extends IteratorIterator<TKey, TValue, TIterator>
286
+ */
287
+ class AppendIterator extends IteratorIterator {
288
+
289
+ /**
290
+ * @param TIterator $iterator
291
+ * @return void
292
+ */
293
+ public function append(Iterator $iterator) {}
294
+
295
+ /**
296
+ * @return ArrayIterator<TKey, TValue>
297
+ */
298
+ public function getArrayIterator() {}
299
+
300
+ }
You can’t perform that action at this time.
0 commit comments