WIP - Order steps & remaining APIs

This commit is contained in:
Fairuz
2021-07-23 21:27:18 +08:00
parent d5dd26ae73
commit 4eaf1917fa
11 changed files with 358 additions and 12 deletions
@@ -13,11 +13,14 @@ class PackingListObject implements DataTransferObject
private $containerType;
public function __construct(int $packingListId, ?string $containerReference, int $containerType)
private $sealReference;
public function __construct(int $packingListId, ?string $containerReference, int $containerType, ?String $sealReference)
{
$this->packingListId = $packingListId;
$this->containerReference = $containerReference;
$this->containerType = $containerType
$this->containerType = $containerType;
$this->sealReference = $sealReference;
}
public function getPackingListId(): int
@@ -34,4 +37,9 @@ class PackingListObject implements DataTransferObject
{
return $this->containerType;
}
public function getSealReference(): int
{
return $this->sealReference;
}
}