src/Entity/Opinion.php line 15

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Entity\Traits\EntityTimestampableTrait;
  5. use DateTimeInterface;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. /**
  9.  * @ORM\Entity
  10.  */
  11. class Opinion
  12. {
  13.     use EntityTimestampableTrait;
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private int $id;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private string $author;
  24.     /**
  25.      * @Gedmo\SortablePosition
  26.      * @ORM\Column(type="integer")
  27.      */
  28.     private int $sortPosition;
  29.     /**
  30.      * @ORM\Column(type="text")
  31.      */
  32.     private string $opinion;
  33.     /**
  34.      * @ORM\Column(type="string", length=2, options={"default": "en"})
  35.      */
  36.     private string $lang 'en';
  37.     /**
  38.      * @ORM\Column(type="boolean", options={"default": true})
  39.      */
  40.     private bool $isVisible true;
  41.     public function getId(): int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getAuthor(): string
  46.     {
  47.         return $this->author;
  48.     }
  49.     public function setAuthor(string $author): self
  50.     {
  51.         $this->author $author;
  52.         return $this;
  53.     }
  54.     public function getSortPosition(): int
  55.     {
  56.         return $this->sortPosition;
  57.     }
  58.     public function setSortPosition(int $sortPosition): self
  59.     {
  60.         $this->sortPosition $sortPosition;
  61.         return $this;
  62.     }
  63.     public function getDate(): DateTimeInterface
  64.     {
  65.         return $this->createdAt;
  66.     }
  67.     public function getOpinion(): string
  68.     {
  69.         return $this->opinion;
  70.     }
  71.     public function setOpinion(string $opinion): self
  72.     {
  73.         $this->opinion $opinion;
  74.         return $this;
  75.     }
  76.     public function getLang(): string
  77.     {
  78.         return $this->lang;
  79.     }
  80.     public function setLang(string $lang): self
  81.     {
  82.         $this->lang $lang;
  83.         return $this;
  84.     }
  85.     public function isVisible(): bool
  86.     {
  87.         return $this->isVisible;
  88.     }
  89.     public function setIsVisible(bool $isVisible): self
  90.     {
  91.         $this->isVisible $isVisible;
  92.         return $this;
  93.     }
  94. }