src/Entity/Languages.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LanguagesRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassLanguagesRepository::class)]
  9. class Languages
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length50nullabletrue)]
  16.     private ?string $name null;
  17.     #[ORM\Column(length50nullabletrue)]
  18.     private ?string $code null;
  19.     #[ORM\Column(nullabletrue)]
  20.     private ?bool $isDefault null;
  21.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  22.     private ?string $label null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $flagImage null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private ?bool $isOff null;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?bool $isEnable null;
  29.     #[ORM\Column(length50nullabletrue)]
  30.     private ?string $codeLocal null;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getName(): ?string
  36.     {
  37.         return $this->name;
  38.     }
  39.     public function setName(?string $name): self
  40.     {
  41.         $this->name $name;
  42.         return $this;
  43.     }
  44.     public function getCode(): ?string
  45.     {
  46.         return $this->code;
  47.     }
  48.     public function setCode(?string $code): self
  49.     {
  50.         $this->code $code;
  51.         return $this;
  52.     }
  53.     public function isIsDefault(): ?bool
  54.     {
  55.         return $this->isDefault;
  56.     }
  57.     public function setIsDefault(?bool $isDefault): self
  58.     {
  59.         $this->isDefault $isDefault;
  60.         return $this;
  61.     }
  62.     public function getLabel(): ?string
  63.     {
  64.         return $this->label;
  65.     }
  66.     public function setLabel(?string $label): self
  67.     {
  68.         $this->label $label;
  69.         return $this;
  70.     }
  71.     public function getFlagImage(): ?string
  72.     {
  73.         return $this->flagImage;
  74.     }
  75.     public function setFlagImage(?string $flagImage): self
  76.     {
  77.         $this->flagImage $flagImage;
  78.         return $this;
  79.     }
  80.     public function isIsOff(): ?bool
  81.     {
  82.         return $this->isOff;
  83.     }
  84.     public function setIsOff(?bool $isOff): self
  85.     {
  86.         $this->isOff $isOff;
  87.         return $this;
  88.     }
  89.     public function isIsEnable(): ?bool
  90.     {
  91.         return $this->isEnable;
  92.     }
  93.     public function setIsEnable(?bool $isEnable): self
  94.     {
  95.         $this->isEnable $isEnable;
  96.         return $this;
  97.     }
  98.     public function getCodeLocal(): ?string
  99.     {
  100.         return $this->codeLocal;
  101.     }
  102.     public function setCodeLocal(?string $codeLocal): self
  103.     {
  104.         $this->codeLocal $codeLocal;
  105.         return $this;
  106.     }
  107. }