src/Entity/AboutPageData.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AboutPageDataRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassAboutPageDataRepository::class)]
  7. class AboutPageData
  8. {
  9.     const ABOUT_DATA_ID 1;
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(typeTypes::TEXT)]
  15.     private ?string $content null;
  16.     #[ORM\Column(length13)]
  17.     private ?string $contact_phone null;
  18.     #[ORM\Column(length50)]
  19.     private ?string $contact_email null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getContent(): ?string
  25.     {
  26.         return $this->content;
  27.     }
  28.     public function setContent(string $content): static
  29.     {
  30.         $this->content $content;
  31.         return $this;
  32.     }
  33.     public function getContactPhone(): ?string
  34.     {
  35.         return $this->contact_phone;
  36.     }
  37.     public function setContactPhone(string $contact_phone): static
  38.     {
  39.         $this->contact_phone $contact_phone;
  40.         return $this;
  41.     }
  42.     public function getContactEmail(): ?string
  43.     {
  44.         return $this->contact_email;
  45.     }
  46.     public function setContactEmail(string $contact_email): static
  47.     {
  48.         $this->contact_email $contact_email;
  49.         return $this;
  50.     }
  51. }