src/Entity/TicketReply.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TicketReplyRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. #[ORM\Entity(repositoryClassTicketReplyRepository::class)]
  7. class TicketReply
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column(type'integer')]
  12.     private ?int $id null;
  13.     #[ORM\Column(type'text')]
  14.     #[Assert\NotBlank(message'Die Antwort darf nicht leer sein.')]
  15.     private ?string $content null;
  16.     #[ORM\Column(type'datetime')]
  17.     private ?\DateTimeInterface $createdAt null;
  18.     #[ORM\ManyToOne(targetEntityTicket::class, inversedBy'replies')]
  19.     #[ORM\JoinColumn(nullablefalse)]
  20.     private ?Ticket $ticket null;
  21.     #[ORM\ManyToOne(targetEntityUser::class)]
  22.     #[ORM\JoinColumn(nullablefalse)]
  23.     private ?User $author null;
  24.     #[ORM\Column(type'boolean')]
  25.     private bool $userIsRead false;
  26.     #[ORM\Column(type'boolean')]
  27.     private bool $adminIsRead false;
  28.    
  29.     public function __construct()
  30.     {
  31.         // Set creation time
  32.         $this->createdAt = new \DateTime();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getContent(): ?string
  39.     {
  40.         return $this->content;
  41.     }
  42.     public function setContent(string $content): self
  43.     {
  44.         $this->content $content;
  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 getTicket(): ?Ticket
  57.     {
  58.         return $this->ticket;
  59.     }
  60.     public function setTicket(?Ticket $ticket): self
  61.     {
  62.         $this->ticket $ticket;
  63.         return $this;
  64.     }
  65.     public function getAuthor(): ?User
  66.     {
  67.         return $this->author;
  68.     }
  69.     public function setAuthor(?User $author): self
  70.     {
  71.         $this->author $author;
  72.         return $this;
  73.     }
  74.     public function getUserIsRead(): bool
  75.     {
  76.         return $this->userIsRead;
  77.     }
  78.     public function setUserIsRead(bool $userIsRead): self
  79.     {
  80.         $this->userIsRead $userIsRead;
  81.         return $this;
  82.     }
  83.     public function getAdminIsRead(): bool
  84.     {
  85.         return $this->adminIsRead;
  86.     }
  87.     public function setAdminIsRead(bool $adminIsRead): self
  88.     {
  89.         $this->adminIsRead $adminIsRead;
  90.         return $this;
  91.     }
  92. }