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