@@ -30,7 +30,7 @@ class Pipeline implements PipelineInterface, WalkableInterface, RunnableInterfac
3030 public function __construct (
3131 private readonly PipelineRunnerInterface $ runner ,
3232 private readonly StateInterface $ state ,
33- ? \Iterator $ source = null
33+ \Iterator $ source = null
3434 ) {
3535 $ this ->source = new \AppendIterator ();
3636 $ this ->source ->append ($ source ?? new \EmptyIterator ());
@@ -42,7 +42,6 @@ public function __construct(
4242 * @template InputType of non-empty-array<array-key, mixed>|object
4343 *
4444 * @param InputType ...$data
45- * @return void
4645 */
4746 public function feed (...$ data ): void
4847 {
@@ -52,7 +51,7 @@ public function feed(...$data): void
5251 private function passThroughCoroutine (): \Generator
5352 {
5453 $ line = yield ;
55- /** @phpstan-ignore-next-line */
54+ /* @phpstan-ignore-next-line */
5655 while (true ) {
5756 $ line = yield $ line ;
5857 }
@@ -61,7 +60,7 @@ private function passThroughCoroutine(): \Generator
6160 /**
6261 * @template Type of non-empty-array<array-key, mixed>|object
6362 *
64- * @param ExtractorInterface<Type> $extractor
63+ * @param ExtractorInterface<Type> $extractor
6564 * @param StepRejectionInterface<Type> $rejection
6665 */
6766 public function extract (
@@ -110,7 +109,7 @@ public function extract(
110109 * @template OutputType of non-empty-array<array-key, mixed>|object
111110 *
112111 * @param TransformerInterface<InputType, OutputType> $transformer
113- * @param StepRejectionInterface<InputType> $rejection
112+ * @param StepRejectionInterface<InputType> $rejection
114113 */
115114 public function transform (
116115 StepCodeInterface $ stepCode ,
@@ -159,7 +158,7 @@ public function transform(
159158 * @template OutputType of non-empty-array<array-key, mixed>|object
160159 *
161160 * @param LoaderInterface<InputType, OutputType> $loader
162- * @param StepRejectionInterface<InputType> $rejection
161+ * @param StepRejectionInterface<InputType> $rejection
163162 */
164163 public function load (
165164 StepCodeInterface $ stepCode ,
0 commit comments