mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-28 00:43:57 +00:00
invoice-backend
This commit is contained in:
@@ -14,7 +14,7 @@ class CustomerRelationObject
|
||||
/** @var float|null */
|
||||
private $customer_rate;
|
||||
|
||||
/** @var float|null */
|
||||
/** @var boolean|null */
|
||||
private $wave;
|
||||
|
||||
/**
|
||||
@@ -22,9 +22,9 @@ class CustomerRelationObject
|
||||
* @param int|null $forwarderId
|
||||
* @param int|null $companyId
|
||||
* @param float|null $customer_rate
|
||||
* @param float|null $wave
|
||||
* @param bool|null $wave
|
||||
*/
|
||||
public function __construct(?int $forwarderId = null, ?int $companyId = null, ?float $customer_rate = null, ?float $wave = null)
|
||||
public function __construct(?int $forwarderId = null, ?int $companyId = null, ?float $customer_rate = null, ?bool $wave = null)
|
||||
{
|
||||
$this->forwarderId = $forwarderId;
|
||||
$this->companyId = $companyId;
|
||||
@@ -57,9 +57,9 @@ class CustomerRelationObject
|
||||
}
|
||||
|
||||
/**
|
||||
* @return float|null
|
||||
* @return bool|null
|
||||
*/
|
||||
public function getWave(): ?float
|
||||
public function getWave(): ?bool
|
||||
{
|
||||
return $this->wave;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user