src/Entity/Application.php line 9
<?phpnamespace App\Entity;use App\Repository\ApplicationRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ApplicationRepository::class)]class Application{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 180, unique: true)]private ?string $config = null;#[ORM\Column(length: 255)]private ?string $videoIntro = null;#[ORM\Column]private ?bool $enableContent = null;#[ORM\Column(length: 255)]private ?string $storePlay = null;#[ORM\Column(length: 255)]private ?string $storeApple = null;public function getId(): ?int{return $this->id;}public function getConfig(): ?string{return $this->config;}public function setConfig(string $config): self{$this->config = $config;return $this;}public function getVideoIntro(): ?string{return $this->videoIntro;}public function setVideoIntro(?string $videoIntro): self{$this->videoIntro = $videoIntro;return $this;}public function isEnableContent(): ?bool{return $this->enableContent;}public function setEnableContent(bool $enableContent): self{$this->enableContent = $enableContent;return $this;}public function getStorePlay(): ?string{return $this->storePlay;}public function setStorePlay(string $storePlay): self{$this->storePlay = $storePlay;return $this;}public function getStoreApple(): ?string{return $this->storeApple;}public function setStoreApple(string $storeApple): self{$this->storeApple = $storeApple;return $this;}}