src/Entity/Messages.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MessagesRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassMessagesRepository::class)]
  6. class Messages
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'messages')]
  13.     private ?User $sender null;
  14.     #[ORM\ManyToOne(inversedBy'messages')]
  15.     private ?User $recipient null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $title null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $message null;
  20.     #[ORM\Column(type'datetime'nullabletrue)]
  21.     private $created_at;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?bool $is_read null;
  24.     #[ORM\ManyToOne(inversedBy'messages')]
  25.     private ?Annonces $annonce null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $chat null;
  28.     
  29.     public function __construct()
  30.     {
  31.         $this->created_at = new \DateTime();
  32.     }
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getSender(): ?User
  38.     {
  39.         return $this->sender;
  40.     }
  41.     public function setSender(?User $sender): self
  42.     {
  43.         $this->sender $sender;
  44.         return $this;
  45.     }
  46.     public function getRecipient(): ?User
  47.     {
  48.         return $this->recipient;
  49.     }
  50.     public function setRecipient(?User $recipient): self
  51.     {
  52.         $this->recipient $recipient;
  53.         return $this;
  54.     }
  55.     public function getTitle(): ?string
  56.     {
  57.         return $this->title;
  58.     }
  59.     public function setTitle(?string $title): self
  60.     {
  61.         $this->title $title;
  62.         return $this;
  63.     }
  64.     public function getMessage(): ?string
  65.     {
  66.         return $this->message;
  67.     }
  68.     public function setMessage(?string $message): self
  69.     {
  70.         $this->message $message;
  71.         return $this;
  72.     }
  73.     public function getCreatedAt(): ?\DateTimeInterface
  74.     {
  75.         return $this->created_at;
  76.     }
  77.     public function setCreatedAt(?\DateTimeInterface $created_at): self
  78.     {
  79.         $this->created_at $created_at;
  80.         return $this;
  81.     }
  82.     public function isIsRead(): ?bool
  83.     {
  84.         return $this->is_read;
  85.     }
  86.     public function setIsRead(?bool $is_read): self
  87.     {
  88.         $this->is_read $is_read;
  89.         return $this;
  90.     }
  91.     public function getAnnonce(): ?Annonces
  92.     {
  93.         return $this->annonce;
  94.     }
  95.     public function setAnnonce(?Annonces $annonce): self
  96.     {
  97.         $this->annonce $annonce;
  98.         return $this;
  99.     }
  100.     public function getChat(): ?string
  101.     {
  102.         return $this->chat;
  103.     }
  104.     public function setChat(?string $chat): self
  105.     {
  106.         $this->chat $chat;
  107.         return $this;
  108.     }
  109. }