From 8087b57e25986a301c4a53a5b3a2de88c4adb0c4 Mon Sep 17 00:00:00 2001 From: yangyao Date: Tue, 6 Jun 2023 17:23:00 +0800 Subject: [PATCH] Remove IntegrationTrait --- Setup/RecurringData.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Setup/RecurringData.php b/Setup/RecurringData.php index 76c7f8e..bbd41bd 100644 --- a/Setup/RecurringData.php +++ b/Setup/RecurringData.php @@ -30,6 +30,8 @@ class RecurringData implements InstallDataInterface */ protected $authorizationService; + private $apps = ['tracking', 'returns']; + public function __construct( StoreRepositoryInterface $storeRepository, IntegrationServiceInterface $integrationService, @@ -48,7 +50,6 @@ public function __construct( public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { $storeList = $this->storeRepository->getList(); - $integrationNames = []; foreach ($storeList as $index => $item) { $storeId = $item->getId(); if ($storeId == 0) continue;