src/Entity/ReviewTranslation.php line 16

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 Doctrine\DBAL\Types\Types;
  6. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  7. use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  8. use App\Repository\ReviewRepository;
  9. #[ORM\Entity(repositoryClassReviewRepository::class)]
  10. class ReviewTranslation implements TranslationInterface
  11. {
  12.     use TranslationTrait;
  13.     #[Assert\Valid]
  14.     protected $translations;
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue(strategy'IDENTITY')]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  20.     private ?string $comment null;
  21.     public function getId(): ?int
  22.     {
  23.         return $this->id;
  24.     }
  25.     public function getComment(): ?string
  26.     {
  27.         return $this->comment;
  28.     }
  29.     public function setComment(?string $comment): self
  30.     {
  31.         $this->comment $comment;
  32.         return $this;
  33.     }
  34. }