Skip to content

Commit 69cba3b

Browse files
author
Jan Polak
committed
code style refactor
1 parent 71bb852 commit 69cba3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/OneTouchOrdering/Model/CustomerAddressesFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function getFormattedAddresses(Customer $customer): array
4444
private function format(Address $address): string
4545
{
4646
return sprintf(
47-
"%s, %s, %s, %s %s, %s",
47+
'%s, %s, %s, %s %s, %s',
4848
$address->getName(),
4949
$address->getStreetFull(),
5050
$address->getCity(),

app/code/Magento/OneTouchOrdering/Model/CustomerCardsFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ private function formatCc(\Magento\Vault\Api\Data\PaymentTokenInterface $cc): st
6767
$details['maskedCC'],
6868
_('expires'),
6969
$details['expirationDate']
70-
);
70+
);
7171
}
7272
}

0 commit comments

Comments
 (0)