src/Entity/TranslationSpecific.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TranslationSpecificRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassTranslationSpecificRepository::class)]
  7. class TranslationSpecific
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $fk null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?int $refId null;
  17.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  18.     private ?string $valueText null;
  19.     #[ORM\ManyToOne]
  20.     #[ORM\JoinColumn(nullablefalse)]
  21.     private ?Languages $language null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getFk(): ?string
  27.     {
  28.         return $this->fk;
  29.     }
  30.     public function setFk(?string $fk): self
  31.     {
  32.         $this->fk $fk;
  33.         return $this;
  34.     }
  35.     public function getRefId(): ?int
  36.     {
  37.         return $this->refId;
  38.     }
  39.     public function setRefId(?int $refId): self
  40.     {
  41.         $this->refId $refId;
  42.         return $this;
  43.     }
  44.     public function getValueText(): ?string
  45.     {
  46.         return $this->valueText;
  47.     }
  48.     public function setValueText(?string $valueText): self
  49.     {
  50.         $this->valueText $valueText;
  51.         return $this;
  52.     }
  53.     public function getLanguage(): ?Languages
  54.     {
  55.         return $this->language;
  56.     }
  57.     public function setLanguage(?Languages $language): self
  58.     {
  59.         $this->language $language;
  60.         return $this;
  61.     }
  62. }