data = $data; } public function getValue($key) { if(isset($this->data[$key])) { return $this->data[$key]; } return null; } public function setValue($key, $value) { $this->data[$key] = $value; } }