We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec3293a commit c1dd183Copy full SHA for c1dd183
app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Address.php
@@ -3,6 +3,8 @@
3
* Copyright © Magento, Inc. All rights reserved.
4
* See COPYING.txt for license details.
5
*/
6
+declare(strict_types=1);
7
+
8
namespace Magento\Sales\Block\Adminhtml\Order\Create\Shipping;
9
10
/**
@@ -88,7 +90,7 @@ public function getDontSaveInAddressBook()
88
90
return !$save;
89
91
}
92
if ($shippingIsTheSameAsBilling) {
- return !($this->getIsAsBilling() && $this->getIsShipping());
93
+ return !$shippingIsTheSameAsBilling;
94
95
return $this->getIsAsBilling();
96
0 commit comments