src/Entity/Freresoeur.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FreresoeurRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassFreresoeurRepository::class)]
  6. class Freresoeur
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $nom null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $prenom null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $sexe null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $age null;
  20.     #[ORM\ManyToOne(inversedBy'FreresSoeurs')]
  21.     private ?Membre $membre null;
  22.    
  23.    
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getNom(): ?string
  29.     {
  30.         return $this->nom;
  31.     }
  32.     public function setNom(?string $nom): self
  33.     {
  34.         $this->nom $nom;
  35.         return $this;
  36.     }
  37.     public function getPrenom(): ?string
  38.     {
  39.         return $this->prenom;
  40.     }
  41.     public function setPrenom(?string $prenom): self
  42.     {
  43.         $this->prenom $prenom;
  44.         return $this;
  45.     }
  46.     public function getSexe(): ?string
  47.     {
  48.         return $this->sexe;
  49.     }
  50.     public function setSexe(?string $sexe): self
  51.     {
  52.         $this->sexe $sexe;
  53.         return $this;
  54.     }
  55.     public function getAge(): ?string
  56.     {
  57.         return $this->age;
  58.     }
  59.     public function setAge(?string $age): self
  60.     {
  61.         $this->age $age;
  62.         return $this;
  63.     }
  64.     public function getMembre(): ?Membre
  65.     {
  66.         return $this->membre;
  67.     }
  68.     public function setMembre(?Membre $membre): self
  69.     {
  70.         $this->membre $membre;
  71.         return $this;
  72.     }
  73.   
  74.    
  75. }