<?phpnamespace App\Entity;use App\Repository\ContributorToBlogPostRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=ContributorToBlogPostRepository::class) */class ContributorToBlogPost{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $media; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $featuringImageMedia; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $imagePreviewMedia; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $title; /** * @ORM\Column(type="text", nullable=true) */ private $description; public function getId(): ?int { return $this->id; } public function getMedia(): ?string { return $this->media; } public function setMedia(?string $media): self { $this->media = $media; return $this; } public function getFeaturingImageMedia(): ?string { return $this->featuringImageMedia; } public function setFeaturingImageMedia(?string $featuringImageMedia): self { $this->featuringImageMedia = $featuringImageMedia; return $this; } public function getImagePreviewMedia(): ?string { return $this->imagePreviewMedia; } public function setImagePreviewMedia(?string $imagePreviewMedia): self { $this->imagePreviewMedia = $imagePreviewMedia; return $this; } 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; }}