Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ScopeInterface.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Store\Model;
7 
12 interface ScopeInterface
13 {
17  const SCOPE_STORES = 'stores';
18  const SCOPE_GROUPS = 'groups';
19  const SCOPE_WEBSITES = 'websites';
20 
21  const SCOPE_STORE = 'store';
22  const SCOPE_GROUP = 'group';
23  const SCOPE_WEBSITE = 'website';
25 }