Skip to content

Commit c4c3d60

Browse files
authored
Fixing the Php 7.4 compatibility issue (#683)
Co-authored-by: Avinash Singhal <[email protected]>
1 parent 41b3b6d commit c4c3d60

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/code/Meta/BusinessExtension/Controller/Adminhtml/Ajax/RepairCommercePartnerIntegration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function __construct(
6060
JsonFactory $resultJsonFactory,
6161
FBEHelper $fbeHelper,
6262
MBEInstalls $mbeInstalls,
63-
RequestInterface $request,
63+
RequestInterface $request
6464
) {
6565
$this->resultJsonFactory = $resultJsonFactory;
6666
$this->fbeHelper = $fbeHelper;
@@ -109,7 +109,7 @@ public function repairCommercePartnerIntegration()
109109
'success' => false,
110110
];
111111
}
112-
$this->mbeInstalls->repairCommercePartnerIntegration($storeId);
112+
$this->mbeInstalls->repairCommercePartnerIntegration($storeId);
113113
return [
114114
'success' => true,
115115
];

app/code/Meta/BusinessExtension/Helper/FBEHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function __construct(
9595
SystemConfig $systemConfig,
9696
ProductMetadataInterface $productMetadata,
9797
GraphAPIConfig $graphAPIConfig,
98-
GraphAPIAdapter $graphAPIAdapter,
98+
GraphAPIAdapter $graphAPIAdapter
9999
) {
100100
$this->objectManager = $objectManager;
101101
$this->storeManager = $storeManager;

0 commit comments

Comments
 (0)