Overrides TraceStateInterface::without
public function without(string $key) : TraceStateInterface { if (!isset($this->traceState[$key])) { return $this; } $clone = clone $this; unset($clone->traceState[$key]); return $clone; }