content = $content; } public function append(string $content): void { $this->content .= $content; } public function clear(): void { $this->content = ''; } public function __toString(): string { return $this->content; } }