We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c43ecce commit 775ac53Copy full SHA for 775ac53
stubs/ext-ds.stub
@@ -7,15 +7,15 @@ use Countable;
7
use JsonSerializable;
8
use OutOfBoundsException;
9
use OutOfRangeException;
10
-use Traversable;
+use IteratorAggregate;
11
use UnderflowException;
12
13
/**
14
* @template-covariant TKey
15
* @template-covariant TValue
16
- * @extends Traversable<TKey, TValue>
+ * @extends IteratorAggregate<TKey, TValue>
17
*/
18
-interface Collection extends Traversable, Countable, JsonSerializable
+interface Collection extends IteratorAggregate, Countable, JsonSerializable
19
{
20
21
* @return Collection<TKey, TValue>
0 commit comments