src/Entity/MarketPlace.php line 11
<?php
namespace App\Entity;
use App\Repository\MarketPlaceRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: MarketPlaceRepository::class)]
class MarketPlace
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $name = null;
#[ORM\ManyToMany(targetEntity: Product::class, inversedBy: 'marketPlaces')]
private Collection $products;
#[ORM\Column(length: 255, nullable: true)]
private ?string $logo = null;
#[ORM\OneToMany(mappedBy: 'marketplace', targetEntity: Listing::class)]
private Collection $listings;
public function __construct()
{
$this->products = new ArrayCollection();
$this->listings = new ArrayCollection();
}
public function __toString()
{
return $this->name;
}
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): static
{
$this->name = $name;
return $this;
}
/**
* @return Collection<int, Product>
*/
public function getProducts(): Collection
{
return $this->products;
}
public function addProduct(Product $product): static
{
if (!$this->products->contains($product)) {
$this->products->add($product);
}
return $this;
}
public function removeProduct(Product $product): static
{
$this->products->removeElement($product);
return $this;
}
public function getLogo(): ?string
{
return $this->logo;
}
public function setLogo(?string $logo): static
{
$this->logo = $logo;
return $this;
}
/**
* @return Collection<int, Listing>
*/
public function getListings(): Collection
{
return $this->listings;
}
public function addListing(Listing $listing): static
{
if (!$this->listings->contains($listing)) {
$this->listings->add($listing);
$listing->setMarketplace($this);
}
return $this;
}
public function removeListing(Listing $listing): static
{
if ($this->listings->removeElement($listing)) {
// set the owning side to null (unless already changed)
if ($listing->getMarketplace() === $this) {
$listing->setMarketplace(null);
}
}
return $this;
}
}