src/Entity/Product.php line 4

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. class Product
  4. {
  5.     private $quantity$product$serialNumber$description;
  6.     public function getQuantity(): ?int
  7.     {
  8.         return $this->quantity;
  9.     }
  10.     public function setQuantity(?int $quantity null): void
  11.     {
  12.         $this->quantity $quantity;
  13.     }
  14.     public function getProduct(): ?string
  15.     {
  16.         return $this->product;
  17.     }
  18.     public function setProduct(?string $product ''): void
  19.     {
  20.         $this->product $product;
  21.     }
  22.     public function getSerialNumber(): ?string
  23.     {
  24.         return $this->serialNumber;
  25.     }
  26.     public function setSerialNumber(?string $serialNumber ''): void
  27.     {
  28.         $this->serialNumber $serialNumber;
  29.     }
  30.     public function getDescription(): ?string
  31.     {
  32.         return $this->description;
  33.     }
  34.     public function setDescription(?string $description ''): void
  35.     {
  36.         $this->description $description;
  37.     }
  38. }