_data = $data; } protected function set(string $key, $value):void { $this->_data[$key] = $value; } protected function get(string $key, $default='') { return $this->_data[$key] ?? $default; } }