Skip to content

Commit

Permalink
MAGETWO-80916: Save region correctly to save sales address from admin #…
Browse files Browse the repository at this point in the history
  • Loading branch information
vrann committed Oct 12, 2017
1 parent 724cfda commit f21a58e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use Magento\Sales\Api\OrderRepositoryInterface;
use Magento\Sales\Api\Data\OrderAddressInterface;
use Magento\Sales\Controller\Adminhtml\Order;
use Magento\Sales\Model\Order\Address;
use Magento\Sales\Model\Order\Address as AddressModel;
use Psr\Log\LoggerInterface;
use Magento\Framework\Registry;
use Magento\Framework\App\Response\Http\FileFactory;
Expand Down Expand Up @@ -97,7 +97,7 @@ public function __construct(
public function execute()
{
$addressId = $this->getRequest()->getParam('address_id');
/** @var $address OrderAddressInterface|Address */
/** @var $address OrderAddressInterface|AddressModel */
$address = $this->_objectManager->create(
OrderAddressInterface::class
)->load($addressId);
Expand Down

0 comments on commit f21a58e

Please sign in to comment.