key = $key; $this->value = $value; } /** * Get the key for this map * @return mixed */ function getKey() { return $this->key; } /** * Get the value for this map * @return string */ function getValue() { return $this->value; } } ?>