Skip to content

Commit 413a60a

Browse files
author
Alexander Paliarush
committed
Merge pull request #68 from magento-api/develop
[API] Sprint 41
2 parents 1afbe7e + 3d51e85 commit 413a60a

File tree

1,227 files changed

+4138
-3767
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,227 files changed

+4138
-3767
lines changed

app/code/Magento/AdminNotification/Model/Resource/System/Message/Collection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Collection extends \Magento\Framework\Model\Resource\Db\Collection\Abstrac
2222
protected $_countBySeverity = [];
2323

2424
/**
25-
* @param \Magento\Core\Model\EntityFactory $entityFactory
25+
* @param \Magento\Framework\Data\Collection\EntityFactory $entityFactory
2626
* @param \Psr\Log\LoggerInterface $logger
2727
* @param \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy
2828
* @param \Magento\Framework\Event\ManagerInterface $eventManager
@@ -31,7 +31,7 @@ class Collection extends \Magento\Framework\Model\Resource\Db\Collection\Abstrac
3131
* @param \Magento\Framework\Model\Resource\Db\AbstractDb $resource
3232
*/
3333
public function __construct(
34-
\Magento\Core\Model\EntityFactory $entityFactory,
34+
\Magento\Framework\Data\Collection\EntityFactory $entityFactory,
3535
\Psr\Log\LoggerInterface $logger,
3636
\Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy,
3737
\Magento\Framework\Event\ManagerInterface $eventManager,

app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Baseurl implements \Magento\Framework\Notification\MessageInterface
2121
protected $_config;
2222

2323
/**
24-
* @var \Magento\Store\Model\StoreManagerInterface
24+
* @var \Magento\Framework\Store\StoreManagerInterface
2525
*/
2626
protected $_storeManager;
2727

@@ -32,13 +32,13 @@ class Baseurl implements \Magento\Framework\Notification\MessageInterface
3232

3333
/**
3434
* @param \Magento\Framework\App\Config\ScopeConfigInterface $config
35-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
35+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
3636
* @param \Magento\Framework\UrlInterface $urlBuilder
3737
* @param \Magento\Framework\App\Config\ValueFactory $configValueFactory
3838
*/
3939
public function __construct(
4040
\Magento\Framework\App\Config\ScopeConfigInterface $config,
41-
\Magento\Store\Model\StoreManagerInterface $storeManager,
41+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
4242
\Magento\Framework\UrlInterface $urlBuilder,
4343
\Magento\Framework\App\Config\ValueFactory $configValueFactory
4444
) {

app/code/Magento/Backend/App/Router.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Router extends \Magento\Core\App\Router\Base
5353
* @param \Magento\Framework\App\ResponseFactory $responseFactory
5454
* @param \Magento\Framework\App\Route\ConfigInterface $routeConfig
5555
* @param \Magento\Framework\UrlInterface $url
56-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
56+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
5757
* @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
5858
* @param \Magento\Framework\Url\SecurityInfoInterface $urlSecurityInfo
5959
* @param string $routerId
@@ -70,7 +70,7 @@ public function __construct(
7070
\Magento\Framework\App\ResponseFactory $responseFactory,
7171
\Magento\Framework\App\Route\ConfigInterface $routeConfig,
7272
\Magento\Framework\UrlInterface $url,
73-
\Magento\Store\Model\StoreManagerInterface $storeManager,
73+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
7474
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
7575
\Magento\Framework\Url\SecurityInfoInterface $urlSecurityInfo,
7676
$routerId,

app/code/Magento/Backend/Block/Dashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected function _prepareLayout()
3131

3232
$this->addChild('sales', 'Magento\Backend\Block\Dashboard\Sales');
3333

34-
if ($this->_scopeConfig->getValue(self::XML_PATH_ENABLE_CHARTS, \Magento\Store\Model\ScopeInterface::SCOPE_STORE)) {
34+
if ($this->_scopeConfig->getValue(self::XML_PATH_ENABLE_CHARTS, \Magento\Framework\Store\ScopeInterface::SCOPE_STORE)) {
3535
$block = $this->getLayout()->createBlock('Magento\Backend\Block\Dashboard\Diagrams');
3636
} else {
3737
$block = $this->getLayout()->createBlock(

app/code/Magento/Backend/Block/Dashboard/Graph.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public function getChartUrl($directUrl = true)
210210

211211
$timezoneLocal = $this->_scopeConfig->getValue(
212212
$this->_localeDate->getDefaultTimezonePath(),
213-
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
213+
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE
214214
);
215215

216216
list($dateStart, $dateEnd) = $this->_collectionFactory->create()->getDateRange(

app/code/Magento/Backend/Block/Page/Header.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ public function getLogoutLink()
8080
*/
8181
public function displayNoscriptNotice()
8282
{
83-
return $this->_scopeConfig->getValue('web/browser_capabilities/javascript', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
83+
return $this->_scopeConfig->getValue('web/browser_capabilities/javascript', \Magento\Framework\Store\ScopeInterface::SCOPE_STORE);
8484
}
8585
}

app/code/Magento/Backend/Block/Page/Notices.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Notices extends \Magento\Backend\Block\Template
2222
*/
2323
public function displayNoscriptNotice()
2424
{
25-
return $this->_scopeConfig->getValue('web/browser_capabilities/javascript', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
25+
return $this->_scopeConfig->getValue('web/browser_capabilities/javascript', \Magento\Framework\Store\ScopeInterface::SCOPE_STORE);
2626
}
2727

2828
/**
@@ -32,6 +32,6 @@ public function displayNoscriptNotice()
3232
*/
3333
public function displayDemoNotice()
3434
{
35-
return $this->_scopeConfig->getValue('design/head/demonotice', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
35+
return $this->_scopeConfig->getValue('design/head/demonotice', \Magento\Framework\Store\ScopeInterface::SCOPE_STORE);
3636
}
3737
}

app/code/Magento/Backend/Block/Template.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function isOutputEnabled($moduleName = null)
7979

8080
return !$this->_scopeConfig->isSetFlag(
8181
'advanced/modules_disable_output/' . $moduleName,
82-
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
82+
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE
8383
);
8484
}
8585

app/code/Magento/Backend/Block/Template/Context.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class Context extends \Magento\Framework\View\Element\Template\Context
6666
* @param \Magento\Framework\View\FileSystem $viewFileSystem
6767
* @param \Magento\Framework\View\TemplateEnginePool $enginePool
6868
* @param \Magento\Framework\App\State $appState
69-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
69+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
7070
* @param \Magento\Framework\View\Page\Config $pageConfig
7171
* @param \Magento\Framework\AuthorizationInterface $authorization
7272
* @param \Magento\Backend\Model\Session $backendSession
@@ -99,7 +99,7 @@ public function __construct(
9999
\Magento\Framework\View\FileSystem $viewFileSystem,
100100
\Magento\Framework\View\TemplateEnginePool $enginePool,
101101
\Magento\Framework\App\State $appState,
102-
\Magento\Store\Model\StoreManagerInterface $storeManager,
102+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
103103
\Magento\Framework\View\Page\Config $pageConfig,
104104
\Magento\Framework\AuthorizationInterface $authorization,
105105
\Magento\Backend\Model\Session $backendSession,
@@ -143,7 +143,7 @@ public function __construct(
143143
/**
144144
* Get store manager
145145
*
146-
* @return \Magento\Store\Model\StoreManagerInterface
146+
* @return \Magento\Framework\Store\StoreManagerInterface
147147
*/
148148
public function getStoreManager()
149149
{

app/code/Magento/Backend/Block/Widget/Context.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Context extends \Magento\Backend\Block\Template\Context
4949
* @param \Magento\Framework\View\FileSystem $viewFileSystem
5050
* @param \Magento\Framework\View\TemplateEnginePool $enginePool
5151
* @param \Magento\Framework\App\State $appState
52-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
52+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
5353
* @param \Magento\Framework\AuthorizationInterface $authorization
5454
* @param \Magento\Backend\Model\Session $backendSession
5555
* @param \Magento\Framework\Math\Random $mathRandom
@@ -84,7 +84,7 @@ public function __construct(
8484
\Magento\Framework\View\FileSystem $viewFileSystem,
8585
\Magento\Framework\View\TemplateEnginePool $enginePool,
8686
\Magento\Framework\App\State $appState,
87-
\Magento\Store\Model\StoreManagerInterface $storeManager,
87+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
8888
\Magento\Framework\View\Page\Config $pageConfig,
8989
\Magento\Framework\AuthorizationInterface $authorization,
9090
\Magento\Backend\Model\Session $backendSession,

app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ protected function _convertDate($date, $locale)
203203
$dateObj->setTimezone(
204204
$this->_scopeConfig->getValue(
205205
$this->_localeDate->getDefaultTimezonePath(),
206-
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
206+
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE
207207
)
208208
);
209209

app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function getValue($index = null)
4444
$datetimeTo->setTimezone(
4545
$this->_scopeConfig->getValue(
4646
$this->_localeDate->getDefaultTimezonePath(),
47-
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
47+
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE
4848
)
4949
);
5050
$datetimeTo->addDay(1)->subSecond(1);
@@ -70,7 +70,7 @@ protected function _convertDate($date, $locale)
7070
$dateObj->setTimezone(
7171
$this->_scopeConfig->getValue(
7272
$this->_localeDate->getDefaultTimezonePath(),
73-
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
73+
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE
7474
)
7575
);
7676

app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Currency extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\Abstra
3030
/**
3131
* Application object
3232
*
33-
* @var \Magento\Store\Model\StoreManagerInterface
33+
* @var \Magento\Framework\Store\StoreManagerInterface
3434
*/
3535
protected $_storeManager;
3636

@@ -51,15 +51,15 @@ class Currency extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\Abstra
5151

5252
/**
5353
* @param \Magento\Backend\Block\Context $context
54-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
54+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
5555
* @param \Magento\Directory\Model\Currency\DefaultLocator $currencyLocator
5656
* @param \Magento\Directory\Model\CurrencyFactory $currencyFactory
5757
* @param \Magento\Framework\Locale\CurrencyInterface $localeCurrency
5858
* @param array $data
5959
*/
6060
public function __construct(
6161
\Magento\Backend\Block\Context $context,
62-
\Magento\Store\Model\StoreManagerInterface $storeManager,
62+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
6363
\Magento\Directory\Model\Currency\DefaultLocator $currencyLocator,
6464
\Magento\Directory\Model\CurrencyFactory $currencyFactory,
6565
\Magento\Framework\Locale\CurrencyInterface $localeCurrency,

app/code/Magento/Backend/Helper/Dashboard/Data.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Data extends \Magento\Core\Helper\Data
3030
/**
3131
* @param \Magento\Framework\App\Helper\Context $context
3232
* @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
33-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
33+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
3434
* @param \Magento\Framework\App\State $appState
3535
* @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency
3636
* @param DeploymentConfig $deploymentConfig
@@ -39,7 +39,7 @@ class Data extends \Magento\Core\Helper\Data
3939
public function __construct(
4040
\Magento\Framework\App\Helper\Context $context,
4141
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
42-
\Magento\Store\Model\StoreManagerInterface $storeManager,
42+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
4343
\Magento\Framework\App\State $appState,
4444
\Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency,
4545
DeploymentConfig $deploymentConfig,

app/code/Magento/Backend/Helper/Dashboard/Order.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Order extends \Magento\Backend\Helper\Dashboard\AbstractDashboard
1818
/**
1919
* @param \Magento\Framework\App\Helper\Context $context
2020
* @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
21-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
21+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
2222
* @param \Magento\Framework\App\State $appState
2323
* @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency
2424
* @param \Magento\Reports\Model\Resource\Order\Collection $orderCollection
@@ -27,7 +27,7 @@ class Order extends \Magento\Backend\Helper\Dashboard\AbstractDashboard
2727
public function __construct(
2828
\Magento\Framework\App\Helper\Context $context,
2929
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
30-
\Magento\Store\Model\StoreManagerInterface $storeManager,
30+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
3131
\Magento\Framework\App\State $appState,
3232
\Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency,
3333
\Magento\Reports\Model\Resource\Order\Collection $orderCollection,

app/code/Magento/Backend/Model/Auth.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Auth
4040
protected $_coreConfig;
4141

4242
/**
43-
* @var \Magento\Core\Model\Factory
43+
* @var \Magento\Framework\Data\Collection\ModelFactory
4444
*/
4545
protected $_modelFactory;
4646

@@ -50,15 +50,15 @@ class Auth
5050
* @param \Magento\Backend\Model\Auth\StorageInterface $authStorage
5151
* @param \Magento\Backend\Model\Auth\Credential\StorageInterface $credentialStorage
5252
* @param \Magento\Framework\App\Config\ScopeConfigInterface $coreConfig
53-
* @param \Magento\Core\Model\Factory $modelFactory
53+
* @param \Magento\Framework\Data\Collection\ModelFactory $modelFactory
5454
*/
5555
public function __construct(
5656
\Magento\Framework\Event\ManagerInterface $eventManager,
5757
\Magento\Backend\Helper\Data $backendData,
5858
\Magento\Backend\Model\Auth\StorageInterface $authStorage,
5959
\Magento\Backend\Model\Auth\Credential\StorageInterface $credentialStorage,
6060
\Magento\Framework\App\Config\ScopeConfigInterface $coreConfig,
61-
\Magento\Core\Model\Factory $modelFactory
61+
\Magento\Framework\Data\Collection\ModelFactory $modelFactory
6262
) {
6363
$this->_eventManager = $eventManager;
6464
$this->_backendData = $backendData;

app/code/Magento/Backend/Model/Cache/Resource/Grid/Collection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ class Collection extends \Magento\Framework\Data\Collection
1515
protected $_cacheTypeList;
1616

1717
/**
18-
* @param \Magento\Core\Model\EntityFactory $entityFactory
18+
* @param \Magento\Framework\Data\Collection\EntityFactory $entityFactory
1919
* @param \Magento\Framework\App\Cache\TypeListInterface $cacheTypeList
2020
*/
2121
public function __construct(
22-
\Magento\Core\Model\EntityFactory $entityFactory,
22+
\Magento\Framework\Data\Collection\EntityFactory $entityFactory,
2323
\Magento\Framework\App\Cache\TypeListInterface $cacheTypeList
2424
) {
2525
$this->_cacheTypeList = $cacheTypeList;

app/code/Magento/Backend/Model/Config.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Config extends \Magento\Framework\Object
7171
protected $_configValueFactory;
7272

7373
/**
74-
* @var \Magento\Store\Model\StoreManagerInterface
74+
* @var \Magento\Framework\Store\StoreManagerInterface
7575
*/
7676
protected $_storeManager;
7777

@@ -82,7 +82,7 @@ class Config extends \Magento\Framework\Object
8282
* @param \Magento\Framework\DB\TransactionFactory $transactionFactory
8383
* @param \Magento\Backend\Model\Config\Loader $configLoader
8484
* @param \Magento\Framework\App\Config\ValueFactory $configValueFactory
85-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
85+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
8686
* @param array $data
8787
*/
8888
public function __construct(
@@ -92,7 +92,7 @@ public function __construct(
9292
\Magento\Framework\DB\TransactionFactory $transactionFactory,
9393
\Magento\Backend\Model\Config\Loader $configLoader,
9494
\Magento\Framework\App\Config\ValueFactory $configValueFactory,
95-
\Magento\Store\Model\StoreManagerInterface $storeManager,
95+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
9696
array $data = []
9797
) {
9898
parent::__construct($data);

app/code/Magento/Backend/Model/Config/Backend/Admin/Observer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Observer
3232
protected $_response;
3333

3434
/**
35-
* @var \Magento\Store\Model\StoreManagerInterface
35+
* @var \Magento\Framework\Store\StoreManagerInterface
3636
*/
3737
protected $_storeManager;
3838

@@ -48,7 +48,7 @@ public function __construct(
4848
\Magento\Framework\Registry $coreRegistry,
4949
\Magento\Backend\Model\Auth\Session $authSession,
5050
\Magento\Framework\App\ResponseInterface $response,
51-
\Magento\Store\Model\StoreManagerInterface $storeManager
51+
\Magento\Framework\Store\StoreManagerInterface $storeManager
5252
) {
5353
$this->_backendData = $backendData;
5454
$this->_coreRegistry = $coreRegistry;

app/code/Magento/Backend/Model/Config/Backend/Currency/AbstractCurrency.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected function _getInstalledCurrencies()
7777
',',
7878
$this->_scopeConfig->getValue(
7979
'system/currency/installed',
80-
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
80+
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE
8181
)
8282
);
8383
}

app/code/Magento/Backend/Model/Config/Backend/Locale.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ public function afterSave()
9595
$scopeName = __('Default scope');
9696
break;
9797

98-
case \Magento\Store\Model\ScopeInterface::SCOPE_WEBSITE:
98+
case \Magento\Framework\Store\ScopeInterface::SCOPE_WEBSITE:
9999
/** @var $website \Magento\Store\Model\Website */
100100
$website = $this->_websiteFactory->create();
101101
$websiteName = $website->load($data->getScopeId())->getName();
102102
$scopeName = __('website(%1) scope', $websiteName);
103103
break;
104104

105-
case \Magento\Store\Model\ScopeInterface::SCOPE_STORE:
105+
case \Magento\Framework\Store\ScopeInterface::SCOPE_STORE:
106106
/** @var $store \Magento\Store\Model\Store */
107107
$store = $this->_storeFactory->create();
108108
$storeName = $store->load($data->getScopeId())->getName();

app/code/Magento/Backend/Model/Config/Backend/Store.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function afterSave()
4646
$this->_mutableConfig->setValue(
4747
\Magento\Store\Model\Store::XML_PATH_STORE_IN_URL,
4848
$this->getValue(),
49-
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
49+
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE
5050
);
5151
$this->_cacheManager->clean();
5252
}

app/code/Magento/Backend/Model/Config/Backend/Translate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function afterSave()
6767
$types = array_keys(
6868
$this->_scopeConfig->getValue(
6969
self::XML_PATH_INVALID_CACHES,
70-
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
70+
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE
7171
)
7272
);
7373
if ($this->isValueChanged()) {

0 commit comments

Comments
 (0)