src/Entity/ContractFeedback.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContractFeedbackRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassContractFeedbackRepository::class)]
  7. class ContractFeedback
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column]
  14.     private ?\DateTimeImmutable $createdAt null;
  15.     #[ORM\Column]
  16.     private ?string $title null;
  17.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  18.     private ?string $message null;
  19.     #[ORM\ManyToOne(targetEntityContract::class, inversedBy'feedback')]
  20.     #[ORM\JoinColumn(name'fk_contract')]
  21.     private ?Contract $contract null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getCreatedAt(): ?\DateTimeImmutable
  27.     {
  28.         return $this->createdAt;
  29.     }
  30.     public function setCreatedAt(\DateTimeImmutable $createdAt): self
  31.     {
  32.         $this->createdAt $createdAt;
  33.         return $this;
  34.     }
  35.     public function getMessage(): ?string
  36.     {
  37.         return $this->message;
  38.     }
  39.     public function setMessage(string $message): self
  40.     {
  41.         $this->message $message;
  42.         return $this;
  43.     }
  44.     public function getContract(): ?Contract
  45.     {
  46.         return $this->contract;
  47.     }
  48.     public function setContract(?Contract $contract): self
  49.     {
  50.         $this->contract $contract;
  51.         return $this;
  52.     }
  53.     public function getTitle(): ?string
  54.     {
  55.         return $this->title;
  56.     }
  57.     public function setTitle(string $title): self
  58.     {
  59.         $this->title $title;
  60.         return $this;
  61.     }
  62. }