setText($snipContents); $content->setSnip($this->snip); if ($this->snip->getSnipContents()->count() > 0) { $content->setParent($this->snip->getSnipContents()->last()); } $this->em->persist($content); $this->em->flush(); $this->snip->setActiveCommit($content->getId()); $this->em->persist($this->snip); $this->em->flush(); } public function get(): string { // Return the content of the latest snipContent entity return $this->snip->getSnipContents()->last()->getText(); } public function getHistory(): array { // Return all snipContent entities (by parent) return array_map(fn(SnipContent $content) => $content->getId(), $this->snip->getSnipContents()->toArray()); } public function setCommit(string $commit): void { $this->snip->setActiveCommit($commit); $this->em->persist($this->snip); $this->em->flush(); } public function getCommit(): string { return $this->snip->getActiveCommit(); } public function delete(): void { // Cleanup the history } }