Skip to content

Commit

Permalink
Fix typing information.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jun 29, 2022
1 parent 4513b92 commit d58062e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/SimpleCachingIteratorAggregate.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
final class SimpleCachingIteratorAggregate implements IteratorAggregate
{
/**
* @var CachingIterator<TKey, T>
* // TODO: Remove this when PSalm 5 is released.
* @psalm-var CachingIterator<TKey, T>
* @phpstan-var CachingIterator<TKey, T, Iterator<TKey, T>>
*/
private CachingIterator $iterator;

Expand Down

0 comments on commit d58062e

Please sign in to comment.