Large commit

This commit is contained in:
omair saleh
2021-08-16 08:59:26 +08:00
parent e2874f7199
commit d8c767c670
260 changed files with 4657 additions and 2960 deletions
@@ -7,24 +7,38 @@ use App\Classes\General\Interfaces\DataTransferObject;
class PackingListObject implements DataTransferObject
{
/** @var null|string */
private $reference;
/** @var int */
private $status;
/**
* PackingListObject constructor.
* @param null|string $reference
* @param int $status
*/
public function __construct(?string $reference, int $status)
{
$this->reference = $reference;
$this->status = $status;
}
/**
* @return null|string
*/
public function getReference(): ?string
{
return $this->reference;
}
/**
* @return int
*/
public function getStatus(): int
{
return $this->status;
}
}