configKey = $key; $this->configValue = $value; $this->updatedAt = time(); } public function getKey(): string { return $this->configKey; } public function getValue(): ?string { return $this->configValue; } public function setValue(?string $value): self { $this->configValue = $value; $this->updatedAt = time(); return $this; } }