id; } /** * Returns the configuration key. */ public function getName(): string { return $this->name; } /** * Sets the configuration key. */ public function setName(string $name): void { $this->name = $name; } /** * Returns the stored configuration value. */ public function getValue(): ?string { return $this->value; } /** * Sets the stored configuration value. */ public function setValue(?string $value): void { $this->value = $value; } }