src/Entity/Review.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Symfony\Component\Validator\Constraints as Assert;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Blameable\Traits\BlameableEntity;
  6. use Gedmo\Timestampable\Traits\TimestampableEntity;
  7. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  8. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  9. use App\Repository\ReviewRepository;
  10. #[ORM\Entity(repositoryClassReviewRepository::class)]
  11. class Review implements TranslatableInterface
  12. {
  13.     use BlameableEntity;
  14.     use TimestampableEntity;
  15.     use TranslatableTrait;
  16.     #[Assert\Valid]
  17.     protected $translations;
  18.     #[ORM\Id]
  19.     #[ORM\GeneratedValue(strategy'IDENTITY')]
  20.     #[ORM\Column]
  21.     private ?int $id null;
  22.     #[ORM\ManyToOne(inversedBy'reviews')]
  23.     #[Assert\NotNull()]
  24.     private ?User $user null;
  25.     #[ORM\ManyToOne(inversedBy'reviews')]
  26.     private ?Product $product null;
  27.     #[ORM\Column]
  28.     #[Assert\NotNull()]
  29.     #[Assert\Positive()]
  30.     private ?int $rating null;
  31.     #[ORM\Column(nullabletrue)]
  32.     private ?bool $visible false;
  33.     public function __call($method$arguments)
  34.     {
  35.         return $this->proxyCurrentLocaleTranslation($method$arguments);
  36.     }
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getUser(): ?User
  42.     {
  43.         return $this->user;
  44.     }
  45.     public function setUser(?User $user): self
  46.     {
  47.         $this->user $user;
  48.         return $this;
  49.     }
  50.     public function getProduct(): ?Product
  51.     {
  52.         return $this->product;
  53.     }
  54.     public function setProduct(?Product $product): self
  55.     {
  56.         $this->product $product;
  57.         return $this;
  58.     }
  59.     public function getRating(): ?int
  60.     {
  61.         return $this->rating;
  62.     }
  63.     public function setRating(int $rating): self
  64.     {
  65.         $this->rating $rating;
  66.         return $this;
  67.     }
  68.     public function getVisible(): ?bool
  69.     {
  70.         return $this->visible;
  71.     }
  72.     public function setVisible(?bool $visible): self
  73.     {
  74.         $this->visible $visible;
  75.         return $this;
  76.     }
  77. }