automationRunLogStorage = $automationRunLogStorage; $this->hooks = $hooks; } public function createLogger(int $runId, string $stepId, string $stepType, int $runNumber): StepRunLogger { return new StepRunLogger($this->automationRunLogStorage, $this->hooks, $runId, $stepId, $stepType, $runNumber); } }