Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
fixed typpo on Invoice.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Myles Hyson committed Aug 10, 2017
1 parent 601917e commit f48f0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/Accounting/Invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function update($id, array $data)
$this->service = new \QuickBooks_IPP_Service_Invoice();
$this->resource = $this->find($id);

$this->handleTransactionnData($data, $this->resource);
$this->handleTransactionData($data, $this->resource);
isset($data['Lines']) ? $this->createLines($data['Lines'], $this->resource) : '';

return $this->service->update($this->context, $this->realm, $id, $this->resource) ?: $this->service->lastError();
Expand Down

0 comments on commit f48f0d7

Please sign in to comment.