src/Flexy/ShopBundle/Entity/Customer/Complaint.php line 12

  1. <?php
  2. namespace App\Flexy\ShopBundle\Entity\Customer;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Repository\Flexy\ShopBundle\Entity\Customer\ComplaintRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassComplaintRepository::class)]
  8. #[ApiResource]
  9. class Complaint
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $subject null;
  17.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  18.     private ?string $message null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $createdAt null;
  21.     #[ORM\ManyToOne(inversedBy'complaints')]
  22.     private ?Customer $customer null;
  23.     #[ORM\ManyToOne(inversedBy'complaints')]
  24.     private ?ComplaintSubject $complaintSubject null;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getSubject(): ?string
  30.     {
  31.         return $this->subject;
  32.     }
  33.     public function setSubject(?string $subject): self
  34.     {
  35.         $this->subject $subject;
  36.         return $this;
  37.     }
  38.     public function getMessage(): ?string
  39.     {
  40.         return $this->message;
  41.     }
  42.     public function setMessage(?string $message): self
  43.     {
  44.         $this->message $message;
  45.         return $this;
  46.     }
  47.     public function getCreatedAt(): ?\DateTimeInterface
  48.     {
  49.         return $this->createdAt;
  50.     }
  51.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  52.     {
  53.         $this->createdAt $createdAt;
  54.         return $this;
  55.     }
  56.     public function getCustomer(): ?Customer
  57.     {
  58.         return $this->customer;
  59.     }
  60.     public function setCustomer(?Customer $customer): self
  61.     {
  62.         $this->customer $customer;
  63.         return $this;
  64.     }
  65.     public function getComplaintSubject(): ?ComplaintSubject
  66.     {
  67.         return $this->complaintSubject;
  68.     }
  69.     public function setComplaintSubject(?ComplaintSubject $complaintSubject): self
  70.     {
  71.         $this->complaintSubject $complaintSubject;
  72.         return $this;
  73.     }
  74. }