src/Entity/Organisme.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\OrganismeRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassOrganismeRepository::class)]
  8. class Organisme
  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'reference'targetEntityMembre::class)]
  17.     private Collection $membres;
  18.     public function __construct()
  19.     {
  20.         $this->membres = new ArrayCollection();
  21.     }
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getNom(): ?string
  27.     {
  28.         return $this->nom;
  29.     }
  30.     public function setNom(string $nom): self
  31.     {
  32.         $this->nom $nom;
  33.         return $this;
  34.     }
  35.     public function __toString(): string
  36.     {
  37.         return $this->getNom();
  38.     }
  39.     /**
  40.      * @return Collection<int, Membre>
  41.      */
  42.     public function getMembres(): Collection
  43.     {
  44.         return $this->membres;
  45.     }
  46.     public function addMembre(Membre $membre): self
  47.     {
  48.         if (!$this->membres->contains($membre)) {
  49.             $this->membres->add($membre);
  50.             $membre->setReference($this);
  51.         }
  52.         return $this;
  53.     }
  54.     public function removeMembre(Membre $membre): self
  55.     {
  56.         if ($this->membres->removeElement($membre)) {
  57.             // set the owning side to null (unless already changed)
  58.             if ($membre->getReference() === $this) {
  59.                 $membre->setReference(null);
  60.             }
  61.         }
  62.         return $this;
  63.     }
  64. }