Skip to content

Commit

Permalink
test: corrige typo em district
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewalkermo committed Jan 31, 2024
1 parent e29b560 commit ed45344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gateways/IuguGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ed45344

Please sign in to comment.