Skip to content

Commit 6d4755a

Browse files
committed
Add PHP 8.1 Support
1 parent 5a6cc44 commit 6d4755a

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

Controller/Adminhtml/Customer/Index.php

+16-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
use Magento\Customer\Api\CustomerRepositoryInterface;
1616
use Magento\Framework\Controller\Result\Json;
1717
use Magento\Framework\Controller\Result\JsonFactory;
18-
use Magento\Framework\Exception\LocalizedException;
1918
use Magento\Sales\Api\Data\OrderInterface;
2019
use Magento\Sales\Api\OrderCustomerManagementInterface;
2120
use Magento\Sales\Api\OrderRepositoryInterface;
21+
use Magento\Store\Model\App\Emulation;
2222
use MagePal\GuestToCustomer\Helper\Data;
2323

2424
/**
@@ -62,6 +62,11 @@ class Index extends Action
6262
*/
6363
private $authSession;
6464

65+
/**
66+
* @var Emulation
67+
*/
68+
private $emulation;
69+
6570
/**
6671
* Index constructor.
6772
* @param Context $context
@@ -81,7 +86,8 @@ public function __construct(
8186
OrderCustomerManagementInterface $orderCustomerService,
8287
JsonFactory $resultJsonFactory,
8388
Session $authSession,
84-
Data $helperData
89+
Data $helperData,
90+
Emulation $emulation
8591
) {
8692
parent::__construct($context);
8793

@@ -92,6 +98,7 @@ public function __construct(
9298
$this->customerRepository = $customerRepository;
9399
$this->authSession = $authSession;
94100
$this->helperData = $helperData;
101+
$this->emulation = $emulation;
95102
}
96103

97104
/**
@@ -110,7 +117,9 @@ public function execute()
110117
if ($orderId && $order->getEntityId()) {
111118
try {
112119
if ($this->accountManagement->isEmailAvailable($order->getCustomerEmail())) {
120+
$this->emulation->startEnvironmentEmulation($order->getStoreId(), 'adminhtml');
113121
$customer = $this->orderCustomerService->create($orderId);
122+
$this->emulation->stopEnvironmentEmulation();
114123
} elseif ($this->helperData->isMergeIfCustomerAlreadyExists()) {
115124
$customer = $this->customerRepository->get($order->getCustomerEmail());
116125
} else {
@@ -153,6 +162,11 @@ protected function _isAllowed()
153162
return $this->_authorization->isAllowed('MagePal_GuestToCustomer::guesttocustomer');
154163
}
155164

165+
/**
166+
* @param $hasError
167+
* @param $message
168+
* @return array
169+
*/
156170
protected function getMessage($hasError, $message)
157171
{
158172
return [

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
}
2727
],
2828
"require": {
29-
"php": "~5.6.0|7.0.2|7.0.4|~7.0.6|~7.1.0|~7.1.3|~7.2.0|~7.3.0|~7.4.0",
29+
"php": "~5.6.0|7.0.2|7.0.4|~7.0.6|~7.1.0|~7.1.3|~7.2.0|~7.3.0|~7.4.0|~8.1.0",
3030
"magento/module-backend": "100.0.*|100.1.*|100.2.*|101.0.*|102.0.*",
3131
"magento/framework": "100.0.*|100.1.*|101.0.*|102.0.*|103.0.*",
3232
"magepal/magento2-core": ">=1.1.11"
3333
},
3434
"type": "magento2-module",
35-
"version": "1.3.0",
35+
"version": "1.3.1",
3636
"autoload": {
3737
"files": [
3838
"registration.php"

0 commit comments

Comments
 (0)