src/Entity/Projet.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProjetRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassProjetRepository::class)]
  8. class Projet
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $nomprojet null;
  16.     #[ORM\ManyToMany(targetEntityMembre::class, mappedBy'projet')]
  17.     private Collection $membres;
  18.     public function __construct()
  19.     {
  20.         $this->membres = new ArrayCollection();
  21.     }
  22.     
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     public function getNomprojet(): ?string
  28.     {
  29.         return $this->nomprojet;
  30.     }
  31.     public function setNomprojet(string $nomprojet): self
  32.     {
  33.         $this->nomprojet $nomprojet;
  34.         return $this;
  35.     }
  36.     public function __toString(): string
  37.     {
  38.         return $this->getNomprojet();
  39.     }
  40.     /**
  41.      * @return Collection<int, Membre>
  42.      */
  43.     public function getMembres(): Collection
  44.     {
  45.         return $this->membres;
  46.     }
  47.     public function addMembre(Membre $membre): self
  48.     {
  49.         if (!$this->membres->contains($membre)) {
  50.             $this->membres->add($membre);
  51.             $membre->addProjet($this);
  52.         }
  53.         return $this;
  54.     }
  55.     public function removeMembre(Membre $membre): self
  56.     {
  57.         if ($this->membres->removeElement($membre)) {
  58.             $membre->removeProjet($this);
  59.         }
  60.         return $this;
  61.     }
  62.     
  63. }