data = $data; } /** * @param string|null $key * @return mixed */ public function get(?string $key = null) { if (is_null($key)) { return $this->data; } return ($this->data[$key] ?? null); } }