From 991ffb1774b0ff7661bfebd1c734280b5bf1c846 Mon Sep 17 00:00:00 2001 From: Ewout Fernhout Date: Fri, 13 Jan 2017 17:35:49 +0100 Subject: [PATCH] fix code example typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e8847e..73bac26 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ foreach ($invoiceLines as $invoiceLine) { // Your invoice lines } $salesInvoice = $moneybird->salesInvoice(); -$salesInvoice->details = $salesInvoiceDetails; +$salesInvoice->details = $salesInvoiceDetailsArray; ```