src/Entity/Um6p/SpeakerTranslation.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Um6p;
  3. use App\Repository\Um6p\SpeakerTranslationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  6. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  7. /**
  8.  * @ORM\Entity(repositoryClass=SpeakerTranslationRepository::class)
  9.  */
  10. class SpeakerTranslation implements TranslationInterface
  11.     use TranslationTrait;
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=100, nullable=true)
  20.      */
  21.     private $nom;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $fonction;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $specialite;
  30.  
  31.     
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getNom(): ?string
  37.     {
  38.         return $this->nom;
  39.     }
  40.     public function setNom(?string $nom): self
  41.     {
  42.         $this->nom $nom;
  43.         return $this;
  44.     }
  45.     public function getFonction(): ?string
  46.     {
  47.         return $this->fonction;
  48.     }
  49.     public function setFonction(?string $fonction): self
  50.     {
  51.         $this->fonction $fonction;
  52.         return $this;
  53.     }
  54.     public function getSpecialite(): ?string
  55.     {
  56.         return $this->specialite;
  57.     }
  58.     public function setSpecialite(?string $specialite): self
  59.     {
  60.         $this->specialite $specialite;
  61.         return $this;
  62.     }
  63.  
  64. }