<?phpnamespace App\Entity;use App\Repository\EmailTemplatesRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=EmailTemplatesRepository::class) */class EmailTemplates{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="integer") */ private $ownerId; /** * @ORM\Column(type="integer") */ private $type; /** * @ORM\Column(type="string", length=255) */ private $name; /** * @ORM\Column(type="string", length=255) */ private $email; /** * @ORM\Column(type="string", length=50) */ private $short; /** * @ORM\Column(type="text", nullable=true) */ private $template; public function getId(): ?int { return $this->id; } public function getOwnerId(): ?int { return $this->ownerId; } public function setOwnerId(int $ownerId): self { $this->ownerId = $ownerId; return $this; } public function getType(): ?int { return $this->type; } public function setType(int $type): self { $this->type = $type; return $this; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getEmail(): ?string { return $this->email; } public function setEmail(string $email): self { $this->email = $email; return $this; } public function getShort(): ?string { return $this->short; } public function setShort(string $short): self { $this->short = $short; return $this; } public function getTemplate(): ?string { return $this->template; } public function setTemplate(?string $template): self { $this->template = $template; return $this; }}