src/Entity/Option.php line 12
<?php
namespace App\Entity;
use App\Repository\OptionRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: OptionRepository::class)]
#[ORM\Table(name: '`option`')]
class Option
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $name = null;
#[ORM\ManyToOne(inversedBy: 'options')]
private ?Product $product = null;
#[ORM\OneToMany(mappedBy: 'productOption', targetEntity: OptionValue::class,cascade:['persist'])]
private Collection $option_values;
public function __construct()
{
$this->option_values = new ArrayCollection();
}
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;
}
public function getProduct(): ?Product
{
return $this->product;
}
public function setProduct(?Product $product): static
{
$this->product = $product;
return $this;
}
/**
* @return Collection<int, OptionValue>
*/
public function getOptionValues(): Collection
{
return $this->option_values;
}
public function addOptionValue(OptionValue $optionValue): static
{
if (!$this->option_values->contains($optionValue)) {
$this->option_values->add($optionValue);
$optionValue->setProductOption($this);
}
return $this;
}
public function removeOptionValue(OptionValue $optionValue): static
{
if ($this->option_values->removeElement($optionValue)) {
// set the owning side to null (unless already changed)
if ($optionValue->getProductOption() === $this) {
$optionValue->setProductOption(null);
}
}
return $this;
}
}