From ed453448e278e2e2e1657c79d93809f58f3103a7 Mon Sep 17 00:00:00 2001 From: Andre Walker Date: Tue, 30 Jan 2024 21:05:45 -0300 Subject: [PATCH] test: corrige typo em district --- src/Gateways/IuguGateway.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gateways/IuguGateway.php b/src/Gateways/IuguGateway.php index f76ed8a..e0ec09e 100644 --- a/src/Gateways/IuguGateway.php +++ b/src/Gateways/IuguGateway.php @@ -435,7 +435,7 @@ private function parseInvoice($iuguInvoice, ?Invoice $invoice = null): Invoice $invoice->customer->address->zipCode = $iuguInvoice->payer_address_zip_code; $invoice->customer->address->street = $iuguInvoice->payer_address_street; $invoice->customer->address->number = $iuguInvoice->payer_address_number; - $invoice->customer->address->district = $iuguInvoice->payer_address_disctrict; + $invoice->customer->address->district = $iuguInvoice->payer_address_district; $invoice->customer->address->city = $iuguInvoice->payer_address_city; $invoice->customer->address->state = $iuguInvoice->payer_address_state; $invoice->customer->address->complement = $iuguInvoice->payer_address_complement;