src/Entity/CRM/SmsContent.php line 10
<?phpnamespace App\Entity\CRM;use App\Repository\SmsContentRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: SmsContentRepository::class)]class SmsContent{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(type: Types::TEXT)]private ?string $content = null;#[ORM\Column]private ?bool $isActive = null;#[ORM\Column]private ?bool $remainderForQuestionAnswer = null;#[ORM\Column]private ?bool $firstRemainderForZoom = null;#[ORM\Column]private ?bool $secondRemainderForZoom = null;#[ORM\Column]private ?bool $remainderForInvoicePayment = null;#[ORM\Column]private ?bool $firstRemainderForFreeWebinar = null;#[ORM\Column]private ?bool $secondRemainderForFreeWebinar = null;#[ORM\Column]private ?bool $firstRemainderForKsef = null;#[ORM\Column]private ?bool $secondRemainderForKsef = null;public function getId(): ?int{return $this->id;}public function getContent(): ?string{return $this->content;}public function setContent(string $content): static{$this->content = $content;return $this;}public function isIsActive(): ?bool{return $this->isActive;}public function setIsActive(bool $isActive): static{$this->isActive = $isActive;return $this;}public function isRemainderForQuestionAnswer(): ?bool{return $this->remainderForQuestionAnswer;}public function setRemainderForQuestionAnswer(bool $remainderForQuestionAnswer): static{$this->remainderForQuestionAnswer = $remainderForQuestionAnswer;return $this;}public function isFirstRemainderForZoom(): ?bool{return $this->firstRemainderForZoom;}public function setFirstRemainderForZoom(bool $firstRemainderForZoom): static{$this->firstRemainderForZoom = $firstRemainderForZoom;return $this;}public function isSecondRemainderForZoom(): ?bool{return $this->secondRemainderForZoom;}public function setSecondRemainderForZoom(bool $secondRemainderForZoom): static{$this->secondRemainderForZoom = $secondRemainderForZoom;return $this;}public function isRemainderForInvoicePayment(): ?bool{return $this->remainderForInvoicePayment;}public function setRemainderForInvoicePayment(bool $remainderForInvoicePayment): static{$this->remainderForInvoicePayment = $remainderForInvoicePayment;return $this;}public function isFirstRemainderForFreeWebinar(): ?bool{return $this->firstRemainderForFreeWebinar;}public function setFirstRemainderForFreeWebinar(bool $firstRemainderForFreeWebinar): static{$this->firstRemainderForFreeWebinar = $firstRemainderForFreeWebinar;return $this;}public function isSecondRemainderForFreeWebinar(): ?bool{return $this->secondRemainderForFreeWebinar;}public function setSecondRemainderForFreeWebinar(bool $secondRemainderForFreeWebinar): static{$this->secondRemainderForFreeWebinar = $secondRemainderForFreeWebinar;return $this;}public function isFirstRemainderForKsef(): ?bool{return $this->firstRemainderForKsef;}public function setFirstRemainderForKsef(bool $firstRemainderForKsef): static{$this->firstRemainderForKsef = $firstRemainderForKsef;return $this;}public function isSecondRemainderForKsef(): ?bool{return $this->secondRemainderForKsef;}public function setSecondRemainderForKsef(bool $secondRemainderForKsef): static{$this->secondRemainderForKsef = $secondRemainderForKsef;return $this;}}