Skip to content

Commit 3548e8b

Browse files
authored
Merge pull request #25 from daniel8702/master
Fix coding standards
2 parents 1429f89 + 51df698 commit 3548e8b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Action/CaptureAction.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ private function prepareOrder(TokenInterface $token, OrderInterface $order): arr
143143
);
144144

145145
$buyer = [
146-
'email' => (string)$customer->getEmail(),
147-
'firstName' => (string)$customer->getFirstName(),
148-
'lastName' => (string)$customer->getLastName(),
146+
'email' => (string) $customer->getEmail(),
147+
'firstName' => (string) $customer->getFirstName(),
148+
'lastName' => (string) $customer->getLastName(),
149149
'language' => $this->getFallbackLocaleCode($order->getLocaleCode()),
150150
];
151151
$payUdata['buyer'] = $buyer;
@@ -164,7 +164,7 @@ private function getOrderItems(OrderInterface $order): array
164164
$itemsData[$key] = [
165165
'name' => $item->getProductName(),
166166
'unitPrice' => $item->getUnitPrice(),
167-
'quantity' => $item->getQuantity()
167+
'quantity' => $item->getQuantity(),
168168
];
169169
}
170170
}

0 commit comments

Comments
 (0)