Skip to content

Commit

Permalink
change am variable to float
Browse files Browse the repository at this point in the history
  • Loading branch information
Azare77 committed Nov 14, 2023
1 parent e99779b commit e77df85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Dto/InvoiceBodyDto.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class InvoiceBodyDto extends PrimitiveDto
/**
* amount
*/
private int $am;
private float $am;

/**
* measurement unit
Expand Down Expand Up @@ -177,12 +177,12 @@ public function setSstt(string $sstt): self
return $this;
}

public function getAm(): int
public function getAm(): float
{
return $this->am;
}

public function setAm(int $am): self
public function setAm(float $am): self
{
$this->am = $am;
return $this;
Expand Down

0 comments on commit e77df85

Please sign in to comment.