src/Entity/App/Contact.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity\App;
  3. use App\Repository\App\ContactRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassContactRepository::class)]
  6. class Contact
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length100)]
  13.     private ?string $name null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $email null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $object null;
  18.     #[ORM\Column(length500)]
  19.     private ?string $message null;
  20.     #[ORM\Column]
  21.     private int $category;
  22.     #[ORM\Column]
  23.     private ?\DateTimeImmutable $sendAt null;
  24.     #[ORM\Column]
  25.     private ?bool $isSeen null;
  26.     #[ORM\Column]
  27.     private ?bool $isActive null;
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getName(): ?string
  33.     {
  34.         return $this->name;
  35.     }
  36.     public function setName(string $name): static
  37.     {
  38.         $this->name $name;
  39.         return $this;
  40.     }
  41.     public function getEmail(): ?string
  42.     {
  43.         return $this->email;
  44.     }
  45.     public function setEmail(string $email): static
  46.     {
  47.         $this->email $email;
  48.         return $this;
  49.     }
  50.     public function getObject(): ?string
  51.     {
  52.         return $this->object;
  53.     }
  54.     public function setObject(string $object): static
  55.     {
  56.         $this->object $object;
  57.         return $this;
  58.     }
  59.     public function getMessage(): ?string
  60.     {
  61.         return $this->message;
  62.     }
  63.     public function setMessage(string $message): static
  64.     {
  65.         $this->message $message;
  66.         return $this;
  67.     }
  68.     public function getSendAt(): ?\DateTimeImmutable
  69.     {
  70.         return $this->sendAt;
  71.     }
  72.     public function setSendAt(?\DateTimeImmutable $sendAt): static
  73.     {
  74.         $this->sendAt $sendAt;
  75.         return $this;
  76.     }
  77.     public function isSeen(): ?bool
  78.     {
  79.         return $this->isSeen;
  80.     }
  81.     public function setSeen(bool $isSeen): static
  82.     {
  83.         $this->isSeen $isSeen;
  84.         return $this;
  85.     }
  86.     public function isActive(): ?bool
  87.     {
  88.         return $this->isActive;
  89.     }
  90.     public function setActive(bool $isActive): static
  91.     {
  92.         $this->isActive $isActive;
  93.         return $this;
  94.     }
  95.     public function getCategory(): int
  96.     {
  97.         return $this->category;
  98.     }
  99.     public function setCategory(int $category): static
  100.     {
  101.         $this->category $category;
  102.         return $this;
  103.     }
  104. }