File tree 1 file changed +2
-2
lines changed
app/code/Magento/Quote/Model
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -947,8 +947,8 @@ public function assignCustomerWithAddressChange(
947
947
} else {
948
948
try {
949
949
$ defaultBillingAddress = $ this ->addressRepository ->getById ($ customer ->getDefaultBilling ());
950
+ // phpcs:ignore Magento2.CodeAnalysis.EmptyBlock
950
951
} catch (\Magento \Framework \Exception \NoSuchEntityException $ e ) {
951
- // phpcs:ignore Magento2.CodeAnalysis.EmptyStatement
952
952
}
953
953
if (isset ($ defaultBillingAddress )) {
954
954
/** @var \Magento\Quote\Model\Quote\Address $billingAddress */
@@ -961,8 +961,8 @@ public function assignCustomerWithAddressChange(
961
961
if (null === $ shippingAddress ) {
962
962
try {
963
963
$ defaultShippingAddress = $ this ->addressRepository ->getById ($ customer ->getDefaultShipping ());
964
+ // phpcs:ignore Magento2.CodeAnalysis.EmptyBlock
964
965
} catch (\Magento \Framework \Exception \NoSuchEntityException $ e ) {
965
- // phpcs:ignore Magento2.CodeAnalysis.EmptyStatement
966
966
}
967
967
if (isset ($ defaultShippingAddress )) {
968
968
/** @var \Magento\Quote\Model\Quote\Address $shippingAddress */
You can’t perform that action at this time.
0 commit comments