Skip to content

Commit

Permalink
Fix return type of iterateKeyValue() (#6402)
Browse files Browse the repository at this point in the history
|      Q       |   A
|------------- | -----------
| Type         | bug
| Fixed issues | N/A

#### Summary

I messed this up in #6399. We cannot make any assumptions regarding key
and value here.
  • Loading branch information
derrabus committed May 16, 2024
1 parent fcc6381 commit 3d1041b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Result.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public function iterateAssociative(): Traversable
}

/**
* @return Traversable<int,list<mixed>>
* @return Traversable<mixed, mixed>
*
* @throws Exception
*/
Expand Down

0 comments on commit 3d1041b

Please sign in to comment.