src/Entity/Skill.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SkillRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassSkillRepository::class)]
  8. class Skill
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private $id;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private ?string $name null;
  16.     #[ORM\ManyToMany(targetEntityOffer::class, mappedBy'skill')]
  17.     private Collection $offers;
  18.     public function __construct()
  19.     {
  20.         $this->offers = new ArrayCollection();
  21.     }
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getName(): ?string
  27.     {
  28.         return $this->name;
  29.     }
  30.     public function setName(?string $name): self
  31.     {
  32.         $this->name $name;
  33.         return $this;
  34.     }
  35.     /**
  36.      * @return Collection<int, Offer>
  37.      */
  38.     public function getOffers(): Collection
  39.     {
  40.         return $this->offers;
  41.     }
  42.     public function addOffer(Offer $offer): self
  43.     {
  44.         if (!$this->offers->contains($offer)) {
  45.             $this->offers[] = $offer;
  46.             $offer->addSkill($this);
  47.         }
  48.         return $this;
  49.     }
  50.     public function removeOffer(Offer $offer): self
  51.     {
  52.         if ($this->offers->removeElement($offer)) {
  53.             $offer->removeSkill($this);
  54.         }
  55.         return $this;
  56.     }
  57. }