src/Entity/Comments.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\CommentsRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassCommentsRepository::class)]
  8. #[ApiResource]
  9. class Comments
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\ManyToOne(inversedBy'comments')]
  16.     private ?Products $product null;
  17.     #[ORM\ManyToOne(inversedBy'comments')]
  18.     private ?User $users null;
  19.     #[ORM\Column(typeTypes::TEXT)]
  20.     private ?string $content null;
  21.     public function getId(): ?int
  22.     {
  23.         return $this->id;
  24.     }
  25.     public function getProduct(): ?Products
  26.     {
  27.         return $this->product;
  28.     }
  29.     public function setProduct(?Products $product): static
  30.     {
  31.         $this->product $product;
  32.         return $this;
  33.     }
  34.     public function getUsers(): ?User
  35.     {
  36.         return $this->users;
  37.     }
  38.     public function setUsers(?User $users): static
  39.     {
  40.         $this->users $users;
  41.         return $this;
  42.     }
  43.     public function getContent(): ?string
  44.     {
  45.         return $this->content;
  46.     }
  47.     public function setContent(string $content): static
  48.     {
  49.         $this->content $content;
  50.         return $this;
  51.     }
  52. }