src/Entity/Teams.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TeamsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=TeamsRepository::class)
  7.  */
  8. class Teams
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255, nullable=true)
  18.      */
  19.     private $Nom;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $Prenom;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $TitreFr;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $TitreEn;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $Photo;
  36.     /**
  37.      * @ORM\Column(type="integer", nullable=true)
  38.      */
  39.     private $Ordre;
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getNom(): ?string
  45.     {
  46.         return $this->Nom;
  47.     }
  48.     public function setNom(?string $Nom): self
  49.     {
  50.         $this->Nom $Nom;
  51.         return $this;
  52.     }
  53.     public function getPrenom(): ?string
  54.     {
  55.         return $this->Prenom;
  56.     }
  57.     public function setPrenom(?string $Prenom): self
  58.     {
  59.         $this->Prenom $Prenom;
  60.         return $this;
  61.     }
  62.     public function getTitreFr(): ?string
  63.     {
  64.         return $this->TitreFr;
  65.     }
  66.     public function setTitreFr(?string $TitreFr): self
  67.     {
  68.         $this->TitreFr $TitreFr;
  69.         return $this;
  70.     }
  71.     public function getTitreEn(): ?string
  72.     {
  73.         return $this->TitreEn;
  74.     }
  75.     public function setTitreEn(?string $TitreEn): self
  76.     {
  77.         $this->TitreEn $TitreEn;
  78.         return $this;
  79.     }
  80.     public function getPhoto(): ?string
  81.     {
  82.         return $this->Photo;
  83.     }
  84.     public function setPhoto(?string $Photo): self
  85.     {
  86.         $this->Photo $Photo;
  87.         return $this;
  88.     }
  89.     public function getOrdre(): ?int
  90.     {
  91.         return $this->Ordre;
  92.     }
  93.     public function setOrdre(?int $Ordre): self
  94.     {
  95.         $this->Ordre $Ordre;
  96.         return $this;
  97.     }
  98. }