src/Entity/Post.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PostRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassPostRepository::class)]
  9. class Post
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $title null;
  17.     #[ORM\Column(typeTypes::TEXT)]
  18.     private ?string $content null;
  19.     #[ORM\Column(typeTypes::DATE_IMMUTABLE)]
  20.     private ?\DateTimeImmutable $created_at null;
  21.     #[ORM\OneToMany(mappedBy'post'targetEntityComment::class)]
  22.     private Collection $comments;
  23.     #[ORM\Column(length255)]
  24.     private ?string $imagePath null;
  25.     public function __construct()
  26.     {
  27.         $this->comments = new ArrayCollection();
  28.     }
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getTitle(): ?string
  34.     {
  35.         return $this->title;
  36.     }
  37.     public function setTitle(string $title): static
  38.     {
  39.         $this->title $title;
  40.         return $this;
  41.     }
  42.     public function getContent(): ?string
  43.     {
  44.         return $this->content;
  45.     }
  46.     public function setContent(string $content): static
  47.     {
  48.         $this->content $content;
  49.         return $this;
  50.     }
  51.     public function getCreatedAt(): ?\DateTimeImmutable
  52.     {
  53.         return $this->created_at;
  54.     }
  55.     public function setCreatedAt(\DateTimeImmutable $created_at): static
  56.     {
  57.         $this->created_at $created_at;
  58.         return $this;
  59.     }
  60.     /**
  61.      * @return Collection<int, Comment>
  62.      */
  63.     public function getComments(): Collection
  64.     {
  65.         return $this->comments;
  66.     }
  67.     public function addComment(Comment $comment): static
  68.     {
  69.         if (!$this->comments->contains($comment)) {
  70.             $this->comments->add($comment);
  71.             $comment->setPost($this);
  72.         }
  73.         return $this;
  74.     }
  75.     public function removeComment(Comment $comment): static
  76.     {
  77.         if ($this->comments->removeElement($comment)) {
  78.             // set the owning side to null (unless already changed)
  79.             if ($comment->getPost() === $this) {
  80.                 $comment->setPost(null);
  81.             }
  82.         }
  83.         return $this;
  84.     }
  85.     public function getImagePath(): ?string
  86.     {
  87.         return $this->imagePath;
  88.     }
  89.     public function setImagePath(string $imagePath): static
  90.     {
  91.         $this->imagePath $imagePath;
  92.         return $this;
  93.     }
  94. }