<?php
namespace App\Entity;
use App\Repository\PodcastPrivateThemeRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: PodcastPrivateThemeRepository::class)]
class PodcastPrivateTheme
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'datetime')]
private $date;
#[ORM\Column(type: 'string', length: 255)]
private $theme;
public function getId(): ?int
{
return $this->id;
}
public function getDate(): ?\DateTimeInterface
{
return $this->date;
}
public function setDate(\DateTimeInterface $date): self
{
$this->date = $date;
return $this;
}
public function getTheme(): ?string
{
return $this->theme;
}
public function setTheme(string $theme): self
{
$this->theme = $theme;
return $this;
}
}