src/Entity/Listing.php line 9
<?php
namespace App\Entity;
use App\Repository\ListingRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ListingRepository::class)]
class Listing
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\ManyToOne(inversedBy: 'listings',fetch:"EAGER")]
#[ORM\JoinColumn(nullable: false)]
private ?Product $product = null;
#[ORM\Column(nullable: true)]
private ?array $metas = null;
#[ORM\ManyToOne(inversedBy: 'listings',fetch:"EAGER")]
private ?MarketPlace $marketplace = null;
public function getId(): ?int
{
return $this->id;
}
public function getProduct(): ?Product
{
return $this->product;
}
public function setProduct(?Product $product): static
{
$this->product = $product;
return $this;
}
public function getMetas(): ?array
{
return $this->metas;
}
public function setMetas(?array $metas): static
{
$this->metas = $metas;
return $this;
}
public function getMarketplace(): ?MarketPlace
{
return $this->marketplace;
}
public function setMarketplace(?MarketPlace $marketplace): static
{
$this->marketplace = $marketplace;
return $this;
}
}