src/Entity/Listing.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ListingRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassListingRepository::class)]
  6. class Listing
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'listings',fetch:"EAGER")]
  13.     #[ORM\JoinColumn(nullablefalse)]
  14.     private ?Product $product null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?array $metas null;
  17.     #[ORM\ManyToOne(inversedBy'listings',fetch:"EAGER")]
  18.     private ?MarketPlace $marketplace null;
  19.     public function getId(): ?int
  20.     {
  21.         return $this->id;
  22.     }
  23.     public function getProduct(): ?Product
  24.     {
  25.         return $this->product;
  26.     }
  27.     public function setProduct(?Product $product): static
  28.     {
  29.         $this->product $product;
  30.         return $this;
  31.     }
  32.     public function getMetas(): ?array
  33.     {
  34.         return $this->metas;
  35.     }
  36.     public function setMetas(?array $metas): static
  37.     {
  38.         $this->metas $metas;
  39.         return $this;
  40.     }
  41.     public function getMarketplace(): ?MarketPlace
  42.     {
  43.         return $this->marketplace;
  44.     }
  45.     public function setMarketplace(?MarketPlace $marketplace): static
  46.     {
  47.         $this->marketplace $marketplace;
  48.         return $this;
  49.     }
  50. }