src/Entity/OptionValue.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\OptionValueRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassOptionValueRepository::class)]
  6. class OptionValue
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'optionValues')]
  13.     private ?ProductVariant $productVariant null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $value null;
  16.     #[ORM\ManyToOne(inversedBy'option_values')]
  17.     private ?Option $productOption null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $name null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getProductVariant(): ?ProductVariant
  25.     {
  26.         return $this->productVariant;
  27.     }
  28.     public function setProductVariant(?ProductVariant $productVariant): static
  29.     {
  30.         $this->productVariant $productVariant;
  31.         return $this;
  32.     }
  33.     public function getValue(): ?string
  34.     {
  35.         return $this->value;
  36.     }
  37.     public function setValue(?string $value): static
  38.     {
  39.         $this->value $value;
  40.         return $this;
  41.     }
  42.     public function getProductOption(): ?Option
  43.     {
  44.         return $this->productOption;
  45.     }
  46.     public function setProductOption(?Option $productOption): static
  47.     {
  48.         $this->productOption $productOption;
  49.         return $this;
  50.     }
  51.     public function getName(): ?string
  52.     {
  53.         return $this->name;
  54.     }
  55.     public function setName(?string $name): static
  56.     {
  57.         $this->name $name;
  58.         return $this;
  59.     }
  60. }