item[$key] ?? $default; } /** * @param string $key * @param $value * @return $this */ public function setItem(string $key, $value): static { $this->item[$key] = $value; return $this; } /** * 重置 */ public function reset() { $this->item = []; } }