snipContents = new ArrayCollection(); } public function __toString(): string { return $this->name ?? ''; } public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function isPublic(): ?bool { return $this->public; } public function setPublic(bool $public): self { $this->public = $public; return $this; } /** * @return Collection */ public function getSnipContents(): Collection { return $this->snipContents; } public function addSnipContent(SnipContent $snipContent): self { if (!$this->snipContents->contains($snipContent)) { $this->snipContents->add($snipContent); $snipContent->setSnip($this); } return $this; } public function removeSnipContent(SnipContent $snipContent): self { if ($this->snipContents->removeElement($snipContent)) { // set the owning side to null (unless already changed) if ($snipContent->getSnip() === $this) { $snipContent->setSnip(null); } } return $this; } public function getActiveCommit(): ?string { return $this->activeCommit; } public function setActiveCommit(?string $activeCommit): static { $this->activeCommit = $activeCommit; return $this; } }