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