src/Entity/LabelTranslation.php line 14

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 Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  6. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  7. use App\Repository\LabelTranslationRepository;
  8. #[ORM\Entity(repositoryClassLabelTranslationRepository::class)]
  9. class LabelTranslation implements TranslationInterface
  10. {
  11.     use TranslationTrait;
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column]
  15.     private ?int $id null;
  16.     #[ORM\Column(length127)]
  17.     #[Assert\NotNull()]
  18.     #[Assert\Length(max127)]
  19.     private ?string $name null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getName(): ?string
  25.     {
  26.         return $this->name;
  27.     }
  28.     public function setName(string $name): self
  29.     {
  30.         $this->name $name;
  31.         return $this;
  32.     }
  33. }