src/Entity/statut.php line 11

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