src/Entity/CategorypageTranslation.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CategorypageTranslationRepository;
  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=CategorypageTranslationRepository::class)
  9.  */
  10. class CategorypageTranslation implements TranslationInterface
  11. {
  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.     public function __toString(){
  25.         return $this->titre;
  26.     }
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getTitre(): ?string
  32.     {
  33.         return $this->titre;
  34.     }
  35.     public function setTitre(?string $titre): self
  36.     {
  37.         $this->titre $titre;
  38.         return $this;
  39.     } 
  40. }