src/Entity/Comment.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CommentRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassCommentRepository::class)]
  7. class Comment
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'comments')]
  14.     #[ORM\JoinColumn(nullablefalse)]
  15.     private ?Post $post null;
  16.     #[ORM\ManyToOne(inversedBy'comments')]
  17.     #[ORM\JoinColumn(nullablefalse)]
  18.     private ?User $user null;
  19.     #[ORM\Column(typeTypes::TEXT)]
  20.     private ?string $content null;
  21.     #[ORM\Column]
  22.     private ?\DateTimeImmutable $created_at null;
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     public function getPost(): ?Post
  28.     {
  29.         return $this->post;
  30.     }
  31.     public function setPost(?Post $post): static
  32.     {
  33.         $this->post $post;
  34.         return $this;
  35.     }
  36.     public function getUser(): ?User
  37.     {
  38.         return $this->user;
  39.     }
  40.     public function setUser(?User $user): static
  41.     {
  42.         $this->user $user;
  43.         return $this;
  44.     }
  45.     public function getContent(): ?string
  46.     {
  47.         return $this->content;
  48.     }
  49.     public function setContent(string $content): static
  50.     {
  51.         $this->content $content;
  52.         return $this;
  53.     }
  54.     public function getCreatedAt(): ?\DateTimeImmutable
  55.     {
  56.         return $this->created_at;
  57.     }
  58.     public function setCreatedAt(\DateTimeImmutable $created_at): static
  59.     {
  60.         $this->created_at $created_at;
  61.         return $this;
  62.     }
  63. }