src/Entity/Quote/QuoteRequestOption.php line 11
<?phpnamespace App\Entity\Quote;use App\Entity\Product\ProductOption;use App\Repository\Quote\QuoteRequestOptionRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: QuoteRequestOptionRepository::class)]#[ORM\Table(name: 'app_quote_request_option')]class QuoteRequestOption{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\ManyToOne(inversedBy: 'options')]private ?QuoteRequest $quote = null;#[ORM\ManyToOne]private ?ProductOption $productOption = null;#[ORM\Column(length: 255)]private ?string $value = null;public function getId(): ?int{return $this->id;}public function getQuote(): ?QuoteRequest{return $this->quote;}public function setQuote(?QuoteRequest $quote): self{$this->quote = $quote;return $this;}public function getProductOption(): ?ProductOption{return $this->productOption;}public function setProductOption(?ProductOption $productOption): self{$this->productOption = $productOption;return $this;}public function getValue(): ?string{return $this->value;}public function setValue(string $value): self{$this->value = $value;return $this;}}