setText($snipContents) ->setSnip($this->snip) ; if ($this->snip->getSnipContents()->count() > 0) { $content->setParent($this->snip->getSnipContents()->last()); } $this->em->persist($content); $this->em->flush(); $this->snip->setActiveVersion($content->getId()); $this->em->persist($this->snip); $this->em->flush(); } // Shortcut to get the active text public function getActiveText(): string { $contentRepo = $this->em->getRepository(SnipContent::class); return $contentRepo->find($this->snip->getActiveVersion())->getText(); } public function setVersion(SnipContent $version): void { $this->snip->setActiveVersion($version); $this->em->persist($this->snip); $this->em->flush(); } public function delete(): void { // Cleanup the versions } }