src/Entity/MarketPlace.php line 11

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MarketPlaceRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassMarketPlaceRepository::class)]
  8. class MarketPlace
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $name null;
  16.     #[ORM\ManyToMany(targetEntityProduct::class, inversedBy'marketPlaces')]
  17.     private Collection $products;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $logo null;
  20.     #[ORM\OneToMany(mappedBy'marketplace'targetEntityListing::class)]
  21.     private Collection $listings;
  22.     public function __construct()
  23.     {
  24.         $this->products = new ArrayCollection();
  25.         $this->listings = new ArrayCollection();
  26.     }
  27.     public function __toString()
  28.     {
  29.         return $this->name;
  30.     }
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getName(): ?string
  36.     {
  37.         return $this->name;
  38.     }
  39.     public function setName(?string $name): static
  40.     {
  41.         $this->name $name;
  42.         return $this;
  43.     }
  44.     /**
  45.      * @return Collection<int, Product>
  46.      */
  47.     public function getProducts(): Collection
  48.     {
  49.         return $this->products;
  50.     }
  51.     public function addProduct(Product $product): static
  52.     {
  53.         if (!$this->products->contains($product)) {
  54.             $this->products->add($product);
  55.         }
  56.         return $this;
  57.     }
  58.     public function removeProduct(Product $product): static
  59.     {
  60.         $this->products->removeElement($product);
  61.         return $this;
  62.     }
  63.     public function getLogo(): ?string
  64.     {
  65.         return $this->logo;
  66.     }
  67.     public function setLogo(?string $logo): static
  68.     {
  69.         $this->logo $logo;
  70.         return $this;
  71.     }
  72.     /**
  73.      * @return Collection<int, Listing>
  74.      */
  75.     public function getListings(): Collection
  76.     {
  77.         return $this->listings;
  78.     }
  79.     public function addListing(Listing $listing): static
  80.     {
  81.         if (!$this->listings->contains($listing)) {
  82.             $this->listings->add($listing);
  83.             $listing->setMarketplace($this);
  84.         }
  85.         return $this;
  86.     }
  87.     public function removeListing(Listing $listing): static
  88.     {
  89.         if ($this->listings->removeElement($listing)) {
  90.             // set the owning side to null (unless already changed)
  91.             if ($listing->getMarketplace() === $this) {
  92.                 $listing->setMarketplace(null);
  93.             }
  94.         }
  95.         return $this;
  96.     }
  97. }