<?php
namespace App\Entity;
class Product
{
private $quantity, $product, $serialNumber, $description;
public function getQuantity(): ?int
{
return $this->quantity;
}
public function setQuantity(?int $quantity = null): void
{
$this->quantity = $quantity;
}
public function getProduct(): ?string
{
return $this->product;
}
public function setProduct(?string $product = ''): void
{
$this->product = $product;
}
public function getSerialNumber(): ?string
{
return $this->serialNumber;
}
public function setSerialNumber(?string $serialNumber = ''): void
{
$this->serialNumber = $serialNumber;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description = ''): void
{
$this->description = $description;
}
}