Skip to content

Commit

Permalink
Bug fix:
Browse files Browse the repository at this point in the history
- setOtherMeasurementUnitQuantity
- setOtherMeasurementUnitTitle
  • Loading branch information
firebed committed Jun 7, 2024
1 parent f15247b commit abc7ad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Models/InvoiceDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ public function getOtherMeasurementUnitQuantity(): ?int
*/
public function setOtherMeasurementUnitQuantity(?int $otherMeasurementUnitQuantity): void
{
$this->push('otherMeasurementUnitQuantity', $otherMeasurementUnitQuantity);
$this->set('otherMeasurementUnitQuantity', $otherMeasurementUnitQuantity);
}

/**
Expand All @@ -733,7 +733,7 @@ public function getOtherMeasurementUnitTitle(): ?string
*/
public function setOtherMeasurementUnitTitle(?string $otherMeasurementUnitTitle): void
{
$this->push('otherMeasurementUnitTitle', $otherMeasurementUnitTitle);
$this->set('otherMeasurementUnitTitle', $otherMeasurementUnitTitle);
}

public function set($key, $value): void
Expand Down

0 comments on commit abc7ad7

Please sign in to comment.