diff --git a/src/AwaitingIterator.php b/src/AwaitingIterator.php index c338cd7..730dea9 100644 --- a/src/AwaitingIterator.php +++ b/src/AwaitingIterator.php @@ -67,20 +67,30 @@ private function complete(): void $valid->resolve(false); } + // phpcs:disable + /** + * @return mixed + */ public function current(): mixed { return $this->queue->dequeue(); } + // phpcs:enable public function next(): void { // no-op } + // phpcs:disable + /** + * @return mixed + */ public function key(): mixed { return $this->key++; } + // phpcs:enable /** * @psalm-suppress MixedInferredReturnType