src/Entity/Um6p/ProfTranslation.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Um6p;
  3. use App\Repository\Um6p\ProfTranslationRepository;
  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=ProfTranslationRepository::class)
  9.  */
  10. class ProfTranslation 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 $mission;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $specialite;
  30.     /**
  31.      * @ORM\Column(type="text", nullable=true)
  32.      */
  33.     private $contenu;
  34.  
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getNom(): ?string
  40.     {
  41.         return $this->nom;
  42.     }
  43.     public function setNom(?string $nom): self
  44.     {
  45.         $this->nom $nom;
  46.         return $this;
  47.     }
  48.     public function getMission(): ?string
  49.     {
  50.         return $this->mission;
  51.     }
  52.     public function setMission(?string $mission): self
  53.     {
  54.         $this->mission $mission;
  55.         return $this;
  56.     }
  57.     public function getSpecialite(): ?string
  58.     {
  59.         return $this->specialite;
  60.     }
  61.     public function setSpecialite(?string $specialite): self
  62.     {
  63.         $this->specialite $specialite;
  64.         return $this;
  65.     }
  66.     public function getContenu(): ?string
  67.     {
  68.         return $this->contenu;
  69.     }
  70.     public function setContenu(?string $contenu): self
  71.     {
  72.         $this->contenu $contenu;
  73.         return $this;
  74.     }
  75.    
  76.  
  77. }