src/Entity/Faq.php line 22

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FaqRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;  
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. use Symfony\Component\Validator\Constraints as Assert;  
  9. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  10. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  11. use Symfony\Component\PropertyAccess\PropertyAccess
  12. /**
  13.  * @ORM\Entity(repositoryClass=FaqRepository::class)
  14.  */
  15. class Faq  implements TranslatableInterface
  16.     use TranslatableTrait;
  17.     /**
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue
  20.      * @ORM\Column(type="integer")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @ORM\Column(type="integer", nullable=true)
  25.      */
  26.     private $position;
  27.     /**
  28.      * @ORM\Column(type="boolean", nullable=true)
  29.      */
  30.     private $publier
  31.  
  32.     protected $translations;
  33.     public function __construct()
  34.     { 
  35.     }
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getPosition(): ?int
  41.     {
  42.         return $this->position;
  43.     }
  44.     public function setPosition(?int $position): self
  45.     {
  46.         $this->position $position;
  47.         return $this;
  48.     }
  49.     public function getPublier(): ?bool
  50.     {
  51.         return $this->publier;
  52.     }
  53.     public function setPublier(?bool $publier): self
  54.     {
  55.         $this->publier $publier;
  56.         return $this;
  57.     }
  58.  
  59.     
  60.     public  function __toString(){
  61.         return $this->getTitre();
  62.     }
  63.    
  64.     public function __call($method$arguments)
  65.     {
  66.         return PropertyAccess::createPropertyAccessor()->getValue($this->translate(), $method);
  67.     }
  68. }