fix type string VatReceiptRequest.sum
This commit is contained in:
parent
becb2f5d11
commit
6feaaf3fa6
@ -39,10 +39,10 @@ class VatReceiptRequest
|
|||||||
* @param string $type
|
* @param string $type
|
||||||
* @param float $sum
|
* @param float $sum
|
||||||
*/
|
*/
|
||||||
public function __construct(string $type, string $sum)
|
public function __construct(string $type, $sum)
|
||||||
{
|
{
|
||||||
$this->type = $type;
|
$this->type = $type;
|
||||||
$this->sum = $sum;
|
$this->sum = (float) $sum;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -56,7 +56,7 @@ class VatReceiptRequest
|
|||||||
/**
|
/**
|
||||||
* @return float
|
* @return float
|
||||||
*/
|
*/
|
||||||
public function getSum(): string
|
public function getSum()
|
||||||
{
|
{
|
||||||
return $this->sum;
|
return $this->sum;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user