diff --git a/src/PipelineRunnerInterface.php b/src/PipelineRunnerInterface.php index a570326..1122cb4 100644 --- a/src/PipelineRunnerInterface.php +++ b/src/PipelineRunnerInterface.php @@ -11,12 +11,14 @@ interface PipelineRunnerInterface { /** - * @template Type of non-empty-array|object + * @template InputType of non-empty-array|object + * @template OutputType of non-empty-array|object * - * @param \Iterator $source - * @param \Generator&(AcceptanceResultBucketInterface|RejectionResultBucketInterface), Type|null, void> $async - * - * @return \Iterator> + * @param \Iterator $source + * @param \Generator&(AcceptanceResultBucketInterface|RejectionResultBucketInterface))|null, InputType, void> $coroutine + * @param StepRejectionInterface $rejection + * @param StepStateInterface $state + * @return \Iterator> */ public function run( \Iterator $source,