src/Entity/Term.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TermRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassTermRepository::class)]
  7. class Term
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $title null;
  15.     #[ORM\Column(typeTypes::TEXT)]
  16.     private ?string $content null;
  17.     #[ORM\Column]
  18.     private ?bool $isOnline null;
  19.     public function getId(): ?int
  20.     {
  21.         return $this->id;
  22.     }
  23.     public function getTitle(): ?string
  24.     {
  25.         return $this->title;
  26.     }
  27.     public function setTitle(string $title): self
  28.     {
  29.         $this->title $title;
  30.         return $this;
  31.     }
  32.     public function getContent(): ?string
  33.     {
  34.         return $this->content;
  35.     }
  36.     public function setContent(string $content): self
  37.     {
  38.         $this->content $content;
  39.         return $this;
  40.     }
  41.     public function isIsOnline(): ?bool
  42.     {
  43.         return $this->isOnline;
  44.     }
  45.     public function setIsOnline(bool $isOnline): self
  46.     {
  47.         $this->isOnline $isOnline;
  48.         return $this;
  49.     }
  50. }