src/Entity/SkillCategory.php line 11

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SkillCategoryRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassSkillCategoryRepository::class)]
  8. class SkillCategory
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $nom null;
  16.     #[ORM\OneToMany(mappedBy'category'targetEntitySkill::class)]
  17.     private Collection $skills;
  18.     public function __construct()
  19.     {
  20.         $this->skills = new ArrayCollection();
  21.     }
  22.     public function __toString()
  23.     {
  24.         return $this->nom;
  25.     }
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getNom(): ?string
  31.     {
  32.         return $this->nom;
  33.     }
  34.     public function setNom(string $nom): self
  35.     {
  36.         $this->nom $nom;
  37.         return $this;
  38.     }
  39.     /**
  40.      * @return Collection<int, Skill>
  41.      */
  42.     public function getSkills(): Collection
  43.     {
  44.         return $this->skills;
  45.     }
  46.     public function addSkill(Skill $skill): self
  47.     {
  48.         if (!$this->skills->contains($skill)) {
  49.             $this->skills->add($skill);
  50.             $skill->setCategory($this);
  51.         }
  52.         return $this;
  53.     }
  54.     public function removeSkill(Skill $skill): self
  55.     {
  56.         if ($this->skills->removeElement($skill)) {
  57.             // set the owning side to null (unless already changed)
  58.             if ($skill->getCategory() === $this) {
  59.                 $skill->setCategory(null);
  60.             }
  61.         }
  62.         return $this;
  63.     }
  64.     public function getUrlFormatName(): string
  65.     {
  66.         return \URLify::slug($this->nom);
  67.     }
  68. }