src/Entity/FaqTranslation.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FaqTranslationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Mapping\Annotation as Gedmo;
  6. use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  7. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  8. /**
  9.  * @ORM\Entity(repositoryClass=FaqTranslationRepository::class)
  10.  */
  11. class FaqTranslation implements TranslationInterface
  12.     use TranslationTrait;
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255, nullable=true)
  21.      */
  22.     private $titre;
  23.     /**
  24.      * @ORM\Column(type="text", nullable=true)
  25.      */
  26.     private $contenu;
  27.  
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getTitre(): ?string
  33.     {
  34.         return $this->titre;
  35.     }
  36.     public function setTitre(?string $titre): self
  37.     {
  38.         $this->titre $titre;
  39.         return $this;
  40.     }
  41.     public function getContenu(): ?string
  42.     {
  43.         return $this->contenu;
  44.     }
  45.     public function setContenu(?string $contenu): self
  46.     {
  47.         $this->contenu $contenu;
  48.         return $this;
  49.     }
  50.   
  51. }