*/ public array $contentStreamCommands = []; public function addContentStreamCommand(ContentStreamCommand $textOperator): self { $this->contentStreamCommands[] = $textOperator; return $this; } public function isEmpty(): bool { return $this->contentStreamCommands === []; } }