Order APIs & Unity services

This commit is contained in:
Fairuz
2021-07-17 18:44:22 +08:00
parent 9c0772bf65
commit 95660069c9
23 changed files with 403 additions and 78 deletions
@@ -21,7 +21,7 @@ class OrderObject implements DataTransferObject
private $current_step;
public function __construct(int $company_module_id, string $reference, string $reference_contract, int $type, int $status, string $current_step, int $id=0)
public function __construct(int $company_module_id, ?string $reference, string $reference_contract, int $type, int $status, string $current_step, int $id=0)
{
$this->company_module_id = $company_module_id;
$this->reference = $reference;
@@ -71,4 +71,4 @@ class OrderObject implements DataTransferObject
{
$this->current_step = $step;
}
}
}