src/Entity/Languages.php line 11

  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\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassLanguagesRepository::class)]
  8. class Languages
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $locale null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $title null;
  18.     #[ORM\OneToMany(mappedBy'language'targetEntityStringTranslations::class)]
  19.     private Collection $stringTranslations;
  20.     public function __construct()
  21.     {
  22.         $this->stringTranslations = new ArrayCollection();
  23.     }
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getLocale(): ?string
  29.     {
  30.         return $this->locale;
  31.     }
  32.     public function setLocale(string $locale): self
  33.     {
  34.         $this->locale $locale;
  35.         return $this;
  36.     }
  37.     public function getTitle(): ?string
  38.     {
  39.         return $this->title;
  40.     }
  41.     public function setTitle(string $title): self
  42.     {
  43.         $this->title $title;
  44.         return $this;
  45.     }
  46.     /**
  47.      * @return Collection<int, StringTranslations>
  48.      */
  49.     public function getStringTranslations(): Collection
  50.     {
  51.         return $this->stringTranslations;
  52.     }
  53.     public function addStringTranslation(StringTranslations $stringTranslation): self
  54.     {
  55.         if (!$this->stringTranslations->contains($stringTranslation)) {
  56.             $this->stringTranslations->add($stringTranslation);
  57.             $stringTranslation->setLanguage($this);
  58.         }
  59.         return $this;
  60.     }
  61.     public function removeStringTranslation(StringTranslations $stringTranslation): self
  62.     {
  63.         if ($this->stringTranslations->removeElement($stringTranslation)) {
  64.             // set the owning side to null (unless already changed)
  65.             if ($stringTranslation->getLanguage() === $this) {
  66.                 $stringTranslation->setLanguage(null);
  67.             }
  68.         }
  69.         return $this;
  70.     }
  71. }