src/Entity/Tag.php line 11

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TagRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassTagRepository::class)]
  8. class Tag
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $name null;
  16.     #[ORM\ManyToMany(targetEntityProject::class, inversedBy'tags')]
  17.     private Collection $Project;
  18.     public function __construct()
  19.     {
  20.         $this->Project = 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, Project>
  37.      */
  38.     public function getProject(): Collection
  39.     {
  40.         return $this->Project;
  41.     }
  42.     public function addProject(Project $project): self
  43.     {
  44.         if (!$this->Project->contains($project)) {
  45.             $this->Project->add($project);
  46.         }
  47.         return $this;
  48.     }
  49.     public function removeProject(Project $project): self
  50.     {
  51.         $this->Project->removeElement($project);
  52.         return $this;
  53.     }
  54. }