src/Entity/Vestiging.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\VestigingRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassVestigingRepository::class)]
  8. class Vestiging
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $name null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $adres null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $postcode null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $plaats null;
  22.     #[ORM\Column(length20nullabletrue)]
  23.     private ?string $telefoon null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $email null;
  26.     #[ORM\Column(length25)]
  27.     private ?string $codenaam null;
  28.     #[ORM\Column(length3)]
  29.     private ?string $codeletter null;
  30.     #[ORM\OneToMany(mappedBy'vestiging'targetEntityProspect::class)]
  31.     private Collection $prospects;
  32.     #[ORM\OneToMany(mappedBy'vestiging'targetEntityReminder::class)]
  33.     private Collection $reminders;
  34.     #[ORM\Column(length15)]
  35.     private ?string $colorRgb null;
  36.     public function __construct()
  37.     {
  38.         $this->prospects = new ArrayCollection();
  39.         $this->reminders = new ArrayCollection();
  40.     }
  41.     public function __toString(): string
  42.     {
  43.         return $this->codenaam;
  44.     }
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getName(): ?string
  50.     {
  51.         return $this->name;
  52.     }
  53.     public function setName(string $name): self
  54.     {
  55.         $this->name $name;
  56.         return $this;
  57.     }
  58.     public function getAdres(): ?string
  59.     {
  60.         return $this->adres;
  61.     }
  62.     public function setAdres(?string $adres): self
  63.     {
  64.         $this->adres $adres;
  65.         return $this;
  66.     }
  67.     public function getPostcode(): ?string
  68.     {
  69.         return $this->postcode;
  70.     }
  71.     public function setPostcode(?string $postcode): self
  72.     {
  73.         $this->postcode $postcode;
  74.         return $this;
  75.     }
  76.     public function getPlaats(): ?string
  77.     {
  78.         return $this->plaats;
  79.     }
  80.     public function setPlaats(?string $plaats): self
  81.     {
  82.         $this->plaats $plaats;
  83.         return $this;
  84.     }
  85.     public function getTelefoon(): ?string
  86.     {
  87.         return $this->telefoon;
  88.     }
  89.     public function setTelefoon(?string $telefoon): self
  90.     {
  91.         $this->telefoon $telefoon;
  92.         return $this;
  93.     }
  94.     public function getEmail(): ?string
  95.     {
  96.         return $this->email;
  97.     }
  98.     public function setEmail(?string $email): self
  99.     {
  100.         $this->email $email;
  101.         return $this;
  102.     }
  103.     public function getCodenaam(): ?string
  104.     {
  105.         return $this->codenaam;
  106.     }
  107.     public function setCodenaam(string $codenaam): self
  108.     {
  109.         $this->codenaam $codenaam;
  110.         return $this;
  111.     }
  112.     public function getCodeletter(): ?string
  113.     {
  114.         return $this->codeletter;
  115.     }
  116.     public function setCodeletter(string $codeletter): self
  117.     {
  118.         $this->codeletter $codeletter;
  119.         return $this;
  120.     }
  121.     /**
  122.      * @return Collection<int, Prospect>
  123.      */
  124.     public function getProspects(): Collection
  125.     {
  126.         return $this->prospects;
  127.     }
  128.     public function addProspect(Prospect $prospect): self
  129.     {
  130.         if (!$this->prospects->contains($prospect)) {
  131.             $this->prospects->add($prospect);
  132.             $prospect->setVestiging($this);
  133.         }
  134.         return $this;
  135.     }
  136.     public function removeProspect(Prospect $prospect): self
  137.     {
  138.         if ($this->prospects->removeElement($prospect)) {
  139.             // set the owning side to null (unless already changed)
  140.             if ($prospect->getVestiging() === $this) {
  141.                 $prospect->setVestiging(null);
  142.             }
  143.         }
  144.         return $this;
  145.     }
  146.     /**
  147.      * @return Collection<int, Reminder>
  148.      */
  149.     public function getReminders(): Collection
  150.     {
  151.         return $this->reminders;
  152.     }
  153.     public function addReminder(Reminder $reminder): static
  154.     {
  155.         if (!$this->reminders->contains($reminder)) {
  156.             $this->reminders->add($reminder);
  157.             $reminder->setVestiging($this);
  158.         }
  159.         return $this;
  160.     }
  161.     public function removeReminder(Reminder $reminder): static
  162.     {
  163.         if ($this->reminders->removeElement($reminder)) {
  164.             // set the owning side to null (unless already changed)
  165.             if ($reminder->getVestiging() === $this) {
  166.                 $reminder->setVestiging(null);
  167.             }
  168.         }
  169.         return $this;
  170.     }
  171.     public function getColorRgb(): ?string
  172.     {
  173.         return $this->colorRgb;
  174.     }
  175.     public function setColorRgb(string $colorRgb): static
  176.     {
  177.         $this->colorRgb $colorRgb;
  178.         return $this;
  179.     }
  180. }