src/Entity/CourseParticipants.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\traits\Timestapable;
  4. use App\Repository\CourseParticipantsRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Symfony\Component\Serializer\Annotation\Groups;
  9. #[ORM\Entity(repositoryClassCourseParticipantsRepository::class)]
  10. class CourseParticipants
  11. {
  12.     use Timestapable;
  13.     
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column]
  17.     private ?int $id null;
  18.     #[ORM\ManyToOne(inversedBy'courseParticipants')]
  19.     private ?Course $course null;
  20.     #[ORM\ManyToMany(targetEntityUser::class, inversedBy'courseParticipants')]
  21.     #[Groups(["show_course"])]
  22.     private Collection $participants;
  23.     #[ORM\Column(nullabletrue)]
  24.     #[Groups(["show_course"])]
  25.     private ?bool $isAcceped null;
  26.     public function __construct()
  27.     {
  28.         $this->participants = new ArrayCollection();
  29.     }
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getCourse(): ?Course
  35.     {
  36.         return $this->course;
  37.     }
  38.     public function setCourse(?Course $course): self
  39.     {
  40.         $this->course $course;
  41.         return $this;
  42.     }
  43.     /**
  44.      * @return Collection<int, User>
  45.      */
  46.     public function getParticipants(): Collection
  47.     {
  48.         return $this->participants;
  49.     }
  50.     public function addParticipant(User $participant): self
  51.     {
  52.         if (!$this->participants->contains($participant)) {
  53.             $this->participants->add($participant);
  54.         }
  55.         return $this;
  56.     }
  57.     public function removeParticipant(User $participant): self
  58.     {
  59.         $this->participants->removeElement($participant);
  60.         return $this;
  61.     }
  62.     public function isIsAcceped(): ?bool
  63.     {
  64.         return $this->isAcceped;
  65.     }
  66.     public function setIsAcceped(?bool $isAcceped): self
  67.     {
  68.         $this->isAcceped $isAcceped;
  69.         return $this;
  70.     }
  71. }