data[$name] = $value; return $this; } public function getData(): string { $result = ''; foreach ($this->data as $key => $value) { $result .= $key . ': ' . $value . PHP_EOL; } return $result; } public function showData(): void { echo $this->getData(); } }