src/Entity/Contact.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContactRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ContactRepository::class)
  7.  */
  8. class Contact
  9. {
  10.     const RECEIVED 'received';
  11.     const SENT 'sent';
  12.     const TRASHED 'trashed';
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255, nullable=true)
  21.      */
  22.     private $fullName;
  23.     /**
  24.      * @ORM\Column(type="string", length=180)
  25.      */
  26.     private $email;
  27.     /**
  28.      * @ORM\Column(type="text")
  29.      */
  30.     private $content;
  31.     /**
  32.      * @ORM\Column(type="string", length=10)
  33.      */
  34.     private $status;
  35.     /**
  36.      * @ORM\Column(type="datetime")
  37.      */
  38.     private $createdAt;
  39.     /**
  40.      * @ORM\Column(type="boolean")
  41.      */
  42.     private $isRead false;
  43.     public function getId(): ?int
  44.     {
  45.         return $this->id;
  46.     }
  47.     public function getFullName(): ?string
  48.     {
  49.         return $this->fullName;
  50.     }
  51.     public function setFullName(?string $fullName): self
  52.     {
  53.         $this->fullName $fullName;
  54.         return $this;
  55.     }
  56.     public function getEmail(): ?string
  57.     {
  58.         return $this->email;
  59.     }
  60.     public function setEmail(string $email): self
  61.     {
  62.         $this->email $email;
  63.         return $this;
  64.     }
  65.     public function getContent(): ?string
  66.     {
  67.         return $this->content;
  68.     }
  69.     public function setContent(string $content): self
  70.     {
  71.         $this->content $content;
  72.         return $this;
  73.     }
  74.     public function getStatus(): ?string
  75.     {
  76.         return $this->status;
  77.     }
  78.     public function setStatus(string $status): self
  79.     {
  80.         $this->status $status;
  81.         return $this;
  82.     }
  83.     public function getCreatedAt(): ?\DateTimeInterface
  84.     {
  85.         return $this->createdAt;
  86.     }
  87.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  88.     {
  89.         $this->createdAt $createdAt;
  90.         return $this;
  91.     }
  92.     public function getIsRead(): ?bool
  93.     {
  94.         return $this->isRead;
  95.     }
  96.     public function setIsRead(bool $isRead): self
  97.     {
  98.         $this->isRead $isRead;
  99.         return $this;
  100.     }
  101.     public function isIsRead(): ?bool
  102.     {
  103.         return $this->isRead;
  104.     }
  105. }