src/Entity/Groep.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GroepRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassGroepRepository::class)]
  8. class Groep
  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\OneToMany(mappedBy'groep'targetEntityReminder::class)]
  17.     private Collection $reminders;
  18.     #[ORM\ManyToMany(targetEntityuser::class, inversedBy'groepen')]
  19.     private Collection $users;
  20.     public function __construct()
  21.     {
  22.         $this->reminders = new ArrayCollection();
  23.         $this->users = new ArrayCollection();
  24.     }
  25.     public function __toString()
  26.     {
  27.         return $this->getNaam();
  28.     }
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getNaam(): ?string
  34.     {
  35.         return $this->naam;
  36.     }
  37.     public function setNaam(string $naam): static
  38.     {
  39.         $this->naam $naam;
  40.         return $this;
  41.     }
  42.     /**
  43.      * @return Collection<int, Reminder>
  44.      */
  45.     public function getReminders(): Collection
  46.     {
  47.         return $this->reminders;
  48.     }
  49.     public function addReminder(Reminder $reminder): static
  50.     {
  51.         if (!$this->reminders->contains($reminder)) {
  52.             $this->reminders->add($reminder);
  53.             $reminder->setGroep($this);
  54.         }
  55.         return $this;
  56.     }
  57.     public function removeReminder(Reminder $reminder): static
  58.     {
  59.         if ($this->reminders->removeElement($reminder)) {
  60.             // set the owning side to null (unless already changed)
  61.             if ($reminder->getGroep() === $this) {
  62.                 $reminder->setGroep(null);
  63.             }
  64.         }
  65.         return $this;
  66.     }
  67.     /**
  68.      * @return Collection<int, user>
  69.      */
  70.     public function getUsers(): Collection
  71.     {
  72.         return $this->users;
  73.     }
  74.     public function addUser(user $user): static
  75.     {
  76.         if (!$this->users->contains($user)) {
  77.             $this->users->add($user);
  78.         }
  79.         return $this;
  80.     }
  81.     public function removeUser(user $user): static
  82.     {
  83.         $this->users->removeElement($user);
  84.         return $this;
  85.     }
  86.     public function getAutocompleteUser(){
  87.         return null;
  88.     }
  89.     public function setAutocompleteUser($value){
  90.         return $this;
  91.     }
  92. }