/**
  * @param string        $stepId
  * @param string        $stepFqcn
  * @param callable|null $factory
  * @param string|null   $description
  */
 public function replacePipelineStep($stepId, $stepFqcn, callable $factory = null, $description = null)
 {
     $this->pipelineModifications->replaceStep($stepId, $stepFqcn, $factory, $description);
 }