src/Entity/Leverancier.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LeverancierRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassLeverancierRepository::class)]
  8. class Leverancier
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $naam null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $wadres null;
  18.     #[ORM\Column(length15nullabletrue)]
  19.     private ?string $wpostcode null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $wwoonplaats null;
  22.     #[ORM\Column(length15nullabletrue)]
  23.     private ?string $telefoon null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $email null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $padres null;
  28.     #[ORM\Column(length15nullabletrue)]
  29.     private ?string $ppostcode null;
  30.     #[ORM\Column(length255nullabletrue)]
  31.     private ?string $pwoonplaats null;
  32.     #[ORM\OneToMany(mappedBy'leverancier'targetEntityBestelling::class)]
  33.     private Collection $bestellings;
  34.     public function __construct()
  35.     {
  36.         $this->bestellings = new ArrayCollection();
  37.     }
  38. public function __toString(): string
  39. {
  40.     return $this->naam;
  41. }
  42.     public function getId(): ?int
  43.     {
  44.         return $this->id;
  45.     }
  46.     public function getNaam(): ?string
  47.     {
  48.         return $this->naam;
  49.     }
  50.     public function setNaam(string $naam): static
  51.     {
  52.         $this->naam $naam;
  53.         return $this;
  54.     }
  55.     public function getWadres(): ?string
  56.     {
  57.         return $this->wadres;
  58.     }
  59.     public function setWadres(?string $wadres): static
  60.     {
  61.         $this->wadres $wadres;
  62.         return $this;
  63.     }
  64.     public function getWpostcode(): ?string
  65.     {
  66.         return $this->wpostcode;
  67.     }
  68.     public function setWpostcode(?string $wpostcode): static
  69.     {
  70.         $this->wpostcode $wpostcode;
  71.         return $this;
  72.     }
  73.     public function getWwoonplaats(): ?string
  74.     {
  75.         return $this->wwoonplaats;
  76.     }
  77.     public function setWwoonplaats(?string $wwoonplaats): static
  78.     {
  79.         $this->wwoonplaats $wwoonplaats;
  80.         return $this;
  81.     }
  82.     public function getTelefoon(): ?string
  83.     {
  84.         return $this->telefoon;
  85.     }
  86.     public function setTelefoon(?string $telefoon): static
  87.     {
  88.         $this->telefoon $telefoon;
  89.         return $this;
  90.     }
  91.     public function getEmail(): ?string
  92.     {
  93.         return $this->email;
  94.     }
  95.     public function setEmail(?string $email): static
  96.     {
  97.         $this->email $email;
  98.         return $this;
  99.     }
  100.     public function getPadres(): ?string
  101.     {
  102.         return $this->padres;
  103.     }
  104.     public function setPadres(?string $padres): static
  105.     {
  106.         $this->padres $padres;
  107.         return $this;
  108.     }
  109.     public function getPpostcode(): ?string
  110.     {
  111.         return $this->ppostcode;
  112.     }
  113.     public function setPpostcode(?string $ppostcode): static
  114.     {
  115.         $this->ppostcode $ppostcode;
  116.         return $this;
  117.     }
  118.     public function getPwoonplaats(): ?string
  119.     {
  120.         return $this->pwoonplaats;
  121.     }
  122.     public function setPwoonplaats(?string $pwoonplaats): static
  123.     {
  124.         $this->pwoonplaats $pwoonplaats;
  125.         return $this;
  126.     }
  127.     /**
  128.      * @return Collection<int, Bestelling>
  129.      */
  130.     public function getBestellings(): Collection
  131.     {
  132.         return $this->bestellings;
  133.     }
  134.     public function addBestelling(Bestelling $bestelling): static
  135.     {
  136.         if (!$this->bestellings->contains($bestelling)) {
  137.             $this->bestellings->add($bestelling);
  138.             $bestelling->setLeverancier($this);
  139.         }
  140.         return $this;
  141.     }
  142.     public function removeBestelling(Bestelling $bestelling): static
  143.     {
  144.         if ($this->bestellings->removeElement($bestelling)) {
  145.             // set the owning side to null (unless already changed)
  146.             if ($bestelling->getLeverancier() === $this) {
  147.                 $bestelling->setLeverancier(null);
  148.             }
  149.         }
  150.         return $this;
  151.     }
  152. }