value = $value; $this->content = $content; } public function __toString(): string { if (is_string($this->value)) { return $this->value; } return '(' . implode(', ', $this->value) . ') => ' . $this->content; } }