src/Entity/CourseCost.php line 13

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CourseCostRepository;
  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(repositoryClassCourseCostRepository::class)]
  10. class CourseCost
  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\OneToMany(mappedBy'costs'targetEntityCourse::class)]
  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.     public function getId(): ?uuid
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getName(): ?string
  39.     {
  40.         return $this->name;
  41.     }
  42.     public function setName(string $name): self
  43.     {
  44.         $this->name $name;
  45.         return $this;
  46.     }
  47.     public function getSlug(): ?string
  48.     {
  49.         return $this->slug;
  50.     }
  51.     public function setSlug(string $slug): self
  52.     {
  53.         $this->slug $slug;
  54.         return $this;
  55.     }
  56.     /**
  57.      * @return Collection<int, Course>
  58.      */
  59.     public function getCourses(): Collection
  60.     {
  61.         return $this->courses;
  62.     }
  63.     public function addCourse(Course $course): self
  64.     {
  65.         if (!$this->courses->contains($course)) {
  66.             $this->courses->add($course);
  67.             $course->setCosts($this);
  68.         }
  69.         return $this;
  70.     }
  71.     public function removeCourse(Course $course): self
  72.     {
  73.         if ($this->courses->removeElement($course)) {
  74.             // set the owning side to null (unless already changed)
  75.             if ($course->getCosts() === $this) {
  76.                 $course->setCosts(null);
  77.             }
  78.         }
  79.         return $this;
  80.     }
  81. }