child = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getSnip(): ?Snip { return $this->snip; } public function setSnip(?Snip $snip): self { $this->snip = $snip; return $this; } public function getParent(): ?self { return $this->parent; } public function setParent(?self $parent): self { $this->parent = $parent; return $this; } /** * @return Collection */ public function getChild(): Collection { return $this->child; } public function addChild(self $child): self { if (!$this->child->contains($child)) { $this->child->add($child); $child->setParent($this); } return $this; } public function removeChild(self $child): self { if ($this->child->removeElement($child)) { // set the owning side to null (unless already changed) if ($child->getParent() === $this) { $child->setParent(null); } } return $this; } public function getText(): ?string { return $this->text; } public function setText(?string $text): self { $this->text = $text; return $this; } }