src/Entity/ProductDashboard.php line 9
<?phpnamespace App\Entity;use App\Repository\ProductDashboardRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ProductDashboardRepository::class)]class ProductDashboard{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\OneToOne(mappedBy: 'productDashboard', targetEntity: Product::class)]protected Product $product;#[ORM\Column(length: 9, nullable: true)]private ?string $last_version = null;#[ORM\Column(nullable: true)]private ?bool $is_new_version = null;#[ORM\Column]private ?bool $is_edit = null;#[ORM\Column]private ?bool $is_overview = null;#[ORM\Column]private ?bool $is_git_update = null;#[ORM\Column]private ?bool $is_download = null;#[ORM\Column(length: 64, nullable: true)]private ?string $git_version = null;#[ORM\Column(nullable: true, options: ['default' => false])]private ?bool $is_standalone = null;/*** @return Product*/public function getProduct(): Product{return $this->product;}/*** @param Product $product*/public function setProduct(Product $product): void{$this->product = $product;}public function getId(): ?int{return $this->id;}public function getLastVersion(): ?string{return $this->last_version;}public function setLastVersion(?string $last_version): self{$this->last_version = $last_version;return $this;}public function isIsNewVersion(): ?bool{return $this->is_new_version;}public function setIsNewVersion(?bool $is_new_version): self{$this->is_new_version = $is_new_version;return $this;}public function isIsEdit(): ?bool{return $this->is_edit;}public function setIsEdit(bool $is_edit): self{$this->is_edit = $is_edit;return $this;}public function isIsOverview(): ?bool{return $this->is_overview;}public function setIsOverview(bool $is_overview): self{$this->is_overview = $is_overview;return $this;}public function isIsGitUpdate(): ?bool{return $this->is_git_update;}public function setIsGitUpdate(bool $is_git_update): self{$this->is_git_update = $is_git_update;return $this;}public function isIsDownload(): ?bool{return $this->is_download;}public function setIsDownload(bool $is_download): self{$this->is_download = $is_download;return $this;}public function isStandalone(): ?bool{return $this->is_standalone;}public function setIsStandalone(bool $is_download): self{$this->is_download = $is_download;return $this;}public function getGitVersion(): ?string{return $this->git_version;}public function setGitVersion(?string $git_version): self{$this->git_version = $git_version;return $this;}}