<?php
namespace App\Entity;
use App\Repository\TitulatuurRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: TitulatuurRepository::class)]
class Titulatuur
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $titulatuur = null;
#[ORM\Column(length: 1, nullable: true)]
private ?string $sexe = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $adrestitel = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $aanspreektitel = null;
#[ORM\Column(length: 150, nullable: true)]
private ?string $afkorting = null;
public function __toString()
{
return $this->afkorting;
}
public function getId(): ?int
{
return $this->id;
}
public function getTitulatuur(): ?string
{
return $this->titulatuur;
}
public function setTitulatuur(?string $titulatuur): self
{
$this->titulatuur = $titulatuur;
return $this;
}
public function getSexe(): ?string
{
return $this->sexe;
}
public function setSexe(?string $sexe): self
{
$this->sexe = $sexe;
return $this;
}
public function getAdrestitel(): ?string
{
return $this->adrestitel;
}
public function setAdrestitel(?string $adrestitel): self
{
$this->adrestitel = $adrestitel;
return $this;
}
public function getAanspreektitel(): ?string
{
return $this->aanspreektitel;
}
public function setAanspreektitel(?string $aanspreektitel): self
{
$this->aanspreektitel = $aanspreektitel;
return $this;
}
public function getAfkorting(): ?string
{
return $this->afkorting;
}
public function setAfkorting(?string $afkorting): self
{
$this->afkorting = $afkorting;
return $this;
}
}