src/Entity/CoursePeriod.php line 13

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CoursePeriodRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. use Symfony\Component\Uid\Uuid;
  9. #[ORM\Entity(repositoryClassCoursePeriodRepository::class)]
  10. class CoursePeriod
  11. {
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue(strategy'CUSTOM')]
  14.     #[ORM\Column(type'uuid'uniquetrue)]
  15.     #[ORM\CustomIdGenerator(class: 'doctrine.uuid_generator')]
  16.     private ?Uuid $id null;
  17.     
  18.     #[ORM\Column(length255)]
  19.     private ?string $name null;
  20.     
  21.     #[ORM\Column(length191uniquetrue)]
  22.     #[Gedmo\Slug(fields: ['name'])]
  23.     private ?string $slug null;
  24.     #[ORM\ManyToMany(targetEntityCourse::class, mappedBy'periods')]
  25.     private Collection $courses;
  26.     public function __construct()
  27.     {
  28.         $this->courses = new ArrayCollection();
  29.     }
  30.     
  31.     public function __toString() {
  32.         return $this->name;
  33.     }
  34.     
  35.     public function getId(): ?uuid
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getName(): ?string
  40.     {
  41.         return $this->name;
  42.     }
  43.     public function setName(string $name): self
  44.     {
  45.         $this->name $name;
  46.         return $this;
  47.     }
  48.     public function getSlug(): ?string
  49.     {
  50.         return $this->slug;
  51.     }
  52.     public function setSlug(string $slug): self
  53.     {
  54.         $this->slug $slug;
  55.         return $this;
  56.     }
  57.     /**
  58.      * @return Collection<int, Course>
  59.      */
  60.     public function getCourses(): Collection
  61.     {
  62.         return $this->courses;
  63.     }
  64.     public function addCourse(Course $course): self
  65.     {
  66.         if (!$this->courses->contains($course)) {
  67.             $this->courses->add($course);
  68.             $course->addPeriod($this);
  69.         }
  70.         return $this;
  71.     }
  72.     public function removeCourse(Course $course): self
  73.     {
  74.         if ($this->courses->removeElement($course)) {
  75.             $course->removePeriod($this);
  76.         }
  77.         return $this;
  78.     }
  79. }