src/Entity/Begraafplaats.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BegraafplaatsRepository;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassBegraafplaatsRepository::class)]
  7. class Begraafplaats
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $naam null;
  15.     #[ORM\Column(length25)]
  16.     private ?string $codenaam null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $adres null;
  19.     #[ORM\Column(length15nullabletrue)]
  20.     private ?string $postcode null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $plaats null;
  23.     #[ORM\OneToMany(mappedBy'begraafplaats'targetEntityOrder::class)]
  24.     private Collection $orders;
  25.     public function __toString(): string
  26.     {
  27.         $parts = array($this->getNaam(),$this->getPlaats());
  28.         
  29.         return implode(", ",$parts);
  30.     }
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getNaam(): ?string
  36.     {
  37.         return $this->naam;
  38.     }
  39.     public function setNaam(string $naam): self
  40.     {
  41.         $this->naam $naam;
  42.         return $this;
  43.     }
  44.     public function getCodenaam(): ?string
  45.     {
  46.         return $this->codenaam;
  47.     }
  48.     public function setCodenaam(string $codenaam): self
  49.     {
  50.         $this->codenaam $codenaam;
  51.         return $this;
  52.     }
  53.     public function getAdres(): ?string
  54.     {
  55.         return $this->adres;
  56.     }
  57.     public function setAdres(?string $adres): self
  58.     {
  59.         $this->adres $adres;
  60.         return $this;
  61.     }
  62.     public function getPostcode(): ?string
  63.     {
  64.         return $this->postcode;
  65.     }
  66.     public function setPostcode(?string $postcode): self
  67.     {
  68.         $this->postcode $postcode;
  69.         return $this;
  70.     }
  71.     public function getPlaats(): ?string
  72.     {
  73.         return $this->plaats;
  74.     }
  75.     public function setPlaats(?string $plaats): self
  76.     {
  77.         $this->plaats $plaats;
  78.         return $this;
  79.     }
  80.     /**
  81.      * @return Collection<int, Order>
  82.      */
  83.     public function getOrders(): Collection
  84.     {
  85.         return $this->orders;
  86.     }
  87.     public function addOrder(Order $order): self
  88.     {
  89.         if (!$this->orders->contains($order)) {
  90.             $this->orders->add($order);
  91.             $order->setBegraafplaats($this);
  92.         }
  93.         return $this;
  94.     }
  95.     public function removeOrder(Order $order): self
  96.     {
  97.         if ($this->orders->removeElement($order)) {
  98.             // set the owning side to null (unless already changed)
  99.             if ($order->getBegraafplaats() === $this) {
  100.                 $order->setBegraafplaats(null);
  101.             }
  102.         }
  103.         return $this;
  104.     }
  105. }