src/Entity/HomeText.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\HomeTextRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassHomeTextRepository::class)]
  7. class HomeText
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $title null;
  15.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  16.     private ?string $text null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $picture_url null;
  19.     #[ORM\Column]
  20.     private ?bool $active false;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?\DateTimeImmutable $createdAt null;
  23.     public function __construct()
  24.     {
  25.         $this->createdAt = new \DateTimeImmutable();
  26.     }
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getTitle(): ?string
  32.     {
  33.         return $this->title;
  34.     }
  35.     public function setTitle(?string $title): self
  36.     {
  37.         $this->title $title;
  38.         return $this;
  39.     }
  40.     public function getText(): ?string
  41.     {
  42.         return $this->text;
  43.     }
  44.     public function setText(?string $text): self
  45.     {
  46.         $this->text $text;
  47.         return $this;
  48.     }
  49.     public function getPictureUrl(): ?string
  50.     {
  51.         return $this->picture_url;
  52.     }
  53.     public function setPictureUrl(?string $picture_url): self
  54.     {
  55.         $this->picture_url $picture_url;
  56.         return $this;
  57.     }
  58.     public function isActive(): ?bool
  59.     {
  60.         return $this->active;
  61.     }
  62.     public function setActive(bool $active): self
  63.     {
  64.         $this->active $active;
  65.         return $this;
  66.     }
  67.     public function getCreatedAt(): ?\DateTimeImmutable
  68.     {
  69.         return $this->createdAt;
  70.     }
  71.     public function setCreatedAt(\DateTimeImmutable $createdAt): self
  72.     {
  73.         $this->createdAt $createdAt;
  74.         return $this;
  75.     }
  76. }