From 7a2dce888f55399aea0aa385d9624d179cc6f70b Mon Sep 17 00:00:00 2001 From: Peter Jaap Blaakmeer Date: Thu, 21 Dec 2023 15:57:36 +0100 Subject: [PATCH] Fix getting SCOPE_STORES from incorrect ScopeInterface (#123) --- Helper/Data.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Helper/Data.php b/Helper/Data.php index d2441ad..c1fee75 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -11,9 +11,9 @@ use Magento\Framework\App\Helper\AbstractHelper; use Magento\Framework\App\Helper\Context; use Magento\Framework\App\ProductMetadataInterface; -use Magento\Framework\App\ScopeInterface; use Magento\Framework\App\State; use Magento\Framework\Serialize\Serializer\Json; +use Magento\Store\Model\ScopeInterface; use Magento\Store\Model\StoreManagerInterface; use RuntimeException; use Throwable;