src/Entity/Application.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ApplicationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassApplicationRepository::class)]
  6. class Application
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length180uniquetrue)]
  13.     private ?string $config null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $videoIntro null;
  16.     #[ORM\Column]
  17.     private ?bool $enableContent null;
  18.     #[ORM\Column(length255)]
  19.     private ?string $storePlay null;
  20.     #[ORM\Column(length255)]
  21.     private ?string $storeApple null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getConfig(): ?string
  27.     {
  28.         return $this->config;
  29.     }
  30.     public function setConfig(string $config): self
  31.     {
  32.         $this->config $config;
  33.         return $this;
  34.     }
  35.     public function getVideoIntro(): ?string
  36.     {
  37.         return $this->videoIntro;
  38.     }
  39.     public function setVideoIntro(?string $videoIntro): self
  40.     {
  41.         $this->videoIntro $videoIntro;
  42.         return $this;
  43.     }
  44.     public function isEnableContent(): ?bool
  45.     {
  46.         return $this->enableContent;
  47.     }
  48.     public function setEnableContent(bool $enableContent): self
  49.     {
  50.         $this->enableContent $enableContent;
  51.         return $this;
  52.     }
  53.     public function getStorePlay(): ?string
  54.     {
  55.         return $this->storePlay;
  56.     }
  57.     public function setStorePlay(string $storePlay): self
  58.     {
  59.         $this->storePlay $storePlay;
  60.         return $this;
  61.     }
  62.     public function getStoreApple(): ?string
  63.     {
  64.         return $this->storeApple;
  65.     }
  66.     public function setStoreApple(string $storeApple): self
  67.     {
  68.         $this->storeApple $storeApple;
  69.         return $this;
  70.     }
  71. }