src/Entity/BattleCommentLike.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BattleCommentLikeRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassBattleCommentLikeRepository::class)]
  6. class BattleCommentLike
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column]
  13.     private ?\DateTime $likedAt null;
  14.     #[ORM\ManyToOne(inversedBy'likes')]
  15.     private ?BattleComment $battleComment null;
  16.     #[ORM\ManyToOne(inversedBy'battleCommentLikes')]
  17.     private ?Client $likedBy null;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getLikedAt(): ?\DateTime
  23.     {
  24.         return $this->likedAt;
  25.     }
  26.     public function setLikedAt(\DateTime $likedAt): static
  27.     {
  28.         $this->likedAt $likedAt;
  29.         return $this;
  30.     }
  31.     public function getBattleComment(): ?BattleComment
  32.     {
  33.         return $this->battleComment;
  34.     }
  35.     public function setBattleComment(?BattleComment $battleComment): static
  36.     {
  37.         $this->battleComment $battleComment;
  38.         return $this;
  39.     }
  40.     public function getLikedBy(): ?Client
  41.     {
  42.         return $this->likedBy;
  43.     }
  44.     public function setLikedBy(?Client $likedBy): static
  45.     {
  46.         $this->likedBy $likedBy;
  47.         return $this;
  48.     }
  49. }