blogs = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getTitle(): ?string { return $this->title; } public function setTitle(string $title): self { $this->title = $title; return $this; } public function getDescription(): ?string { return $this->description; } public function setDescription(?string $description): self { $this->description = $description; return $this; } public function getTeaserImage(): ?string { return $this->teaserImage; } public function setTeaserImage(?string $teaserImage): self { $this->teaserImage = $teaserImage; return $this; } /** * @return Collection|Blog[] */ public function getBlogs(): Collection { return $this->blogs; } public function addBlog(Blog $blog): self { if (!$this->blogs->contains($blog)) { $this->blogs[] = $blog; $blog->addSection($this); } return $this; } public function removeBlog(Blog $blog): self { if ($this->blogs->removeElement($blog)) { $blog->removeSection($this); } return $this; } }