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