<?php namespace App\Entity; use App\Repository\SectionRepository; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass=SectionRepository::class) */ class Section { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $title; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $description; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $teaserImage; 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; } }