Skip to content

Commit 775ac53

Browse files
committed
Fix tests
1 parent c43ecce commit 775ac53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stubs/ext-ds.stub

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ use Countable;
77
use JsonSerializable;
88
use OutOfBoundsException;
99
use OutOfRangeException;
10-
use Traversable;
10+
use IteratorAggregate;
1111
use UnderflowException;
1212

1313
/**
1414
* @template-covariant TKey
1515
* @template-covariant TValue
16-
* @extends Traversable<TKey, TValue>
16+
* @extends IteratorAggregate<TKey, TValue>
1717
*/
18-
interface Collection extends Traversable, Countable, JsonSerializable
18+
interface Collection extends IteratorAggregate, Countable, JsonSerializable
1919
{
2020
/**
2121
* @return Collection<TKey, TValue>

0 commit comments

Comments
 (0)