src/Entity/UseCaseTranslation.php line 12

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Repository\UseCaseTranslationRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassUseCaseTranslationRepository::class)]
  8. class UseCaseTranslation
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(typeTypes::INTEGER)]
  13.     private ?int $id null;
  14.     #[ORM\Column(typeTypes::STRINGlength255nullabletrue)]
  15.     private ?string $title null;
  16.     #[ORM\Column(typeTypes::STRINGlength255nullabletrue)]
  17.     private ?string $titleMobile null;
  18.     #[ORM\Column(typeTypes::TEXTnullablefalse)]
  19.     private string $description;
  20.     #[ORM\Column(typeTypes::SIMPLE_ARRAYnullabletrue)]
  21.     private array $tags;
  22.     public function __construct(
  23.         #[ORM\ManyToOne(targetEntityUseCase::class, inversedBy'translations')]
  24.         #[ORM\JoinColumn(nullablefalseonDelete'CASCADE')]
  25.         private readonly UseCase $useCase,
  26.         #[ORM\Column(typeTypes::STRINGlength5nullablefalse)]
  27.         private readonly string $locale,
  28.     ) {
  29.     }
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getUseCase(): UseCase
  35.     {
  36.         return $this->useCase;
  37.     }
  38.     public function getLocale(): string
  39.     {
  40.         return $this->locale;
  41.     }
  42.     public function getTitle(): ?string
  43.     {
  44.         return $this->title;
  45.     }
  46.     public function setTitle(string $title): void
  47.     {
  48.         $this->title $title;
  49.     }
  50.     public function getTitleMobile(): ?string
  51.     {
  52.         return $this->titleMobile;
  53.     }
  54.     public function setTitleMobile(string $title): void
  55.     {
  56.         $this->titleMobile $title;
  57.     }
  58.     public function getDescription(): ?string
  59.     {
  60.         return $this->description;
  61.     }
  62.     public function setDescription(string $description): void
  63.     {
  64.         $this->description $description;
  65.     }
  66.     public function getTags(): array
  67.     {
  68.         return $this->tags;
  69.     }
  70.     public function setTags(array $tags): void
  71.     {
  72.         $this->tags $tags;
  73.     }
  74. }