src/Entity/Faq.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FaqRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Mapping\Annotation as Gedmo;
  6. #[ORM\Entity(repositoryClassFaqRepository::class)]
  7. #[ORM\HasLifecycleCallbacks]
  8. class Faq
  9. {
  10.     use \App\Traits\EntityDateTimeAbleTrait;
  11.     const STATUS_ACTIVE 1;
  12.     const STATUS_INACTIVE 0;
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column(type'integer')]
  16.     private $id;
  17.     /**
  18.      * @Gedmo\Translatable
  19.      */
  20.     #[ORM\Column(type'string'length255nullabletrue)]
  21.     private ?string $question null;
  22.     /**
  23.      * @Gedmo\Translatable
  24.      */
  25.     #[ORM\Column(type'text'nullabletrue)]
  26.     private ?string $answer null;
  27.     #[ORM\Column(type'integer'nullabletrue)]
  28.     private ?int $ordering null;
  29.     #[ORM\ManyToOne(targetEntityTopic::class, inversedBy'faqs')]
  30.     private ?\App\Entity\Topic $topic null;
  31.     #[ORM\Column(type'boolean'nullabletrue)]
  32.     private ?bool $status null;
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getQuestion(): ?string
  38.     {
  39.         return $this->question;
  40.     }
  41.     public function setQuestion(?string $question): self
  42.     {
  43.         $this->question $question;
  44.         return $this;
  45.     }
  46.     public function getAnswer(): ?string
  47.     {
  48.         return $this->answer;
  49.     }
  50.     public function setAnswer(?string $answer): self
  51.     {
  52.         $this->answer $answer;
  53.         return $this;
  54.     }
  55.     public function getOrdering(): ?int
  56.     {
  57.         return $this->ordering;
  58.     }
  59.     public function setOrdering(?int $ordering): self
  60.     {
  61.         $this->ordering $ordering;
  62.         return $this;
  63.     }
  64.     public function getTopic(): ?Topic
  65.     {
  66.         return $this->topic;
  67.     }
  68.     public function setTopic(?Topic $topic): self
  69.     {
  70.         $this->topic $topic;
  71.         return $this;
  72.     }
  73.     public function getStatus(): ?bool
  74.     {
  75.         return $this->status;
  76.     }
  77.     public function setStatus(?bool $status): self
  78.     {
  79.         $this->status $status;
  80.         return $this;
  81.     }
  82. }