Skip to content

Commit

Permalink
Collection stub - we do not need |null in ArrayAccess TKey
Browse files Browse the repository at this point in the history
Closes #557
  • Loading branch information
ondrejmirtes committed Apr 4, 2024
1 parent f42828a commit 1667bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/Collections/Collection.stub
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use IteratorAggregate;
* @template TKey of array-key
* @template T
* @extends IteratorAggregate<TKey, T>
* @extends ArrayAccess<TKey|null, T>
* @extends ArrayAccess<TKey, T>
* @extends ReadableCollection<TKey, T>
*/
interface Collection extends Countable, IteratorAggregate, ArrayAccess, ReadableCollection
Expand Down

0 comments on commit 1667bda

Please sign in to comment.