Skip to content

Commit

Permalink
+ added setter for allocated invoice
Browse files Browse the repository at this point in the history
  • Loading branch information
xersion22 committed Sep 16, 2022
1 parent 4981310 commit 4ecb0dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/Qbil/Models/InvoiceLine.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,9 @@ public function getPurchaseContract()
{
return $this->purchaseContract;
}

public function setAllocatedInvoice(string $allocatedInvoice)
{
$this->allocatedInvoice = $allocatedInvoice;
}
}
3 changes: 2 additions & 1 deletion src/Qbil/Models/InvoiceLineInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ public function getEstimatedAmount();
public function getPrice();
public function getType();
public function getAllocatedInvoice();
public function setAllocatedInvoice(string $allocatedInvoice);
public function getPurchaseContract();
}
}

0 comments on commit 4ecb0dc

Please sign in to comment.