<?php
declare(strict_types=1);
namespace App\Entity;
use App\Entity\Traits\EntityTimestampableTrait;
use DateTimeInterface;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
/**
* @ORM\Entity
*/
class Opinion
{
use EntityTimestampableTrait;
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private int $id;
/**
* @ORM\Column(type="string", length=255)
*/
private string $author;
/**
* @Gedmo\SortablePosition
* @ORM\Column(type="integer")
*/
private int $sortPosition;
/**
* @ORM\Column(type="text")
*/
private string $opinion;
/**
* @ORM\Column(type="string", length=2, options={"default": "en"})
*/
private string $lang = 'en';
/**
* @ORM\Column(type="boolean", options={"default": true})
*/
private bool $isVisible = true;
public function getId(): int
{
return $this->id;
}
public function getAuthor(): string
{
return $this->author;
}
public function setAuthor(string $author): self
{
$this->author = $author;
return $this;
}
public function getSortPosition(): int
{
return $this->sortPosition;
}
public function setSortPosition(int $sortPosition): self
{
$this->sortPosition = $sortPosition;
return $this;
}
public function getDate(): DateTimeInterface
{
return $this->createdAt;
}
public function getOpinion(): string
{
return $this->opinion;
}
public function setOpinion(string $opinion): self
{
$this->opinion = $opinion;
return $this;
}
public function getLang(): string
{
return $this->lang;
}
public function setLang(string $lang): self
{
$this->lang = $lang;
return $this;
}
public function isVisible(): bool
{
return $this->isVisible;
}
public function setIsVisible(bool $isVisible): self
{
$this->isVisible = $isVisible;
return $this;
}
}