src/Entity/OrderItem.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\OrderItemRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassOrderItemRepository::class)]
  6. class OrderItem
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column]
  13.     private ?int $quantity null;
  14.     #[ORM\ManyToOne(inversedBy'items')]
  15.     #[ORM\JoinColumn(nullablefalse)]
  16.     private ?Order $relatedOrder null;
  17.     #[ORM\ManyToOne(inversedBy'orderItems')]
  18.     #[ORM\JoinColumn(nullablefalse)]
  19.     private ?ProductVariant $productVariant null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $image null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?float $price null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $name null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     
  31.     public function getQuantity(): ?int
  32.     {
  33.         return $this->quantity;
  34.     }
  35.     public function setQuantity(int $quantity): static
  36.     {
  37.         $this->quantity $quantity;
  38.         return $this;
  39.     }
  40.     public function getRelatedOrder(): ?Order
  41.     {
  42.         return $this->relatedOrder;
  43.     }
  44.     public function setRelatedOrder(?Order $relatedOrder): static
  45.     {
  46.         $this->relatedOrder $relatedOrder;
  47.         return $this;
  48.     }
  49.     public function getProductVariant(): ?ProductVariant
  50.     {
  51.         return $this->productVariant;
  52.     }
  53.     public function setProductVariant(?ProductVariant $productVariant): static
  54.     {
  55.         $this->productVariant $productVariant;
  56.         return $this;
  57.     }
  58.     public function getImage(): ?string
  59.     {
  60.         return $this->image;
  61.     }
  62.     public function setImage(?string $image): static
  63.     {
  64.         $this->image $image;
  65.         return $this;
  66.     }
  67.     public function getPrice(): ?float
  68.     {
  69.         return $this->price;
  70.     }
  71.     public function setPrice(?float $price): static
  72.     {
  73.         $this->price $price;
  74.         return $this;
  75.     }
  76.     public function __toString(): string
  77.     {
  78.         return $this->productVariant->getName();
  79.     }
  80.     public function getName(): ?string
  81.     {
  82.         return $this->name;
  83.     }
  84.     public function setName(?string $name): static
  85.     {
  86.         $this->name $name;
  87.         return $this;
  88.     }
  89. }