src/Entity/Option.php line 12

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\OptionRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassOptionRepository::class)]
  8. #[ORM\Table(name'`option`')]
  9. class Option
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $name null;
  17.     #[ORM\ManyToOne(inversedBy'options')]
  18.     private ?Product $product null;
  19.     #[ORM\OneToMany(mappedBy'productOption'targetEntityOptionValue::class,cascade:['persist'])]
  20.     private Collection $option_values;
  21.     public function __construct()
  22.     {
  23.         $this->option_values = new ArrayCollection();
  24.     }
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getName(): ?string
  30.     {
  31.         return $this->name;
  32.     }
  33.     public function setName(string $name): static
  34.     {
  35.         $this->name $name;
  36.         return $this;
  37.     }
  38.     public function getProduct(): ?Product
  39.     {
  40.         return $this->product;
  41.     }
  42.     public function setProduct(?Product $product): static
  43.     {
  44.         $this->product $product;
  45.         return $this;
  46.     }
  47.     /**
  48.      * @return Collection<int, OptionValue>
  49.      */
  50.     public function getOptionValues(): Collection
  51.     {
  52.         return $this->option_values;
  53.     }
  54.     public function addOptionValue(OptionValue $optionValue): static
  55.     {
  56.         if (!$this->option_values->contains($optionValue)) {
  57.             $this->option_values->add($optionValue);
  58.             $optionValue->setProductOption($this);
  59.         }
  60.         return $this;
  61.     }
  62.     public function removeOptionValue(OptionValue $optionValue): static
  63.     {
  64.         if ($this->option_values->removeElement($optionValue)) {
  65.             // set the owning side to null (unless already changed)
  66.             if ($optionValue->getProductOption() === $this) {
  67.                 $optionValue->setProductOption(null);
  68.             }
  69.         }
  70.         return $this;
  71.     }
  72. }