From 2e752f6a766be9bec01c4ed43629e9b8d64e3059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Planchat?= Date: Tue, 14 Nov 2023 15:57:53 +0100 Subject: [PATCH] Fixing PHPStan level 9 issues --- src/PipelineRunnerInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PipelineRunnerInterface.php b/src/PipelineRunnerInterface.php index 9463d67..144189c 100644 --- a/src/PipelineRunnerInterface.php +++ b/src/PipelineRunnerInterface.php @@ -12,11 +12,11 @@ interface PipelineRunnerInterface * @template InputType * @template OutputType * - * @param \Iterator $source + * @param \Iterator $source * @param \Generator, InputType|null, void> $coroutine * @param StepRejectionInterface $rejection * @param StepStateInterface $state - * @return \Iterator|null> + * @return \Iterator|null> */ public function run( \Iterator $source,