invoice-backend

This commit is contained in:
mhmj
2019-07-18 22:25:16 +08:00
parent 6c55f95229
commit 6c532dd738
11 changed files with 46 additions and 23 deletions
@@ -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;
}