12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Store\Model;
- /**
- * @api
- * @since 100.0.2
- */
- interface ScopeInterface
- {
- /**#@+
- * Scope types
- */
- const SCOPE_STORES = 'stores';
- const SCOPE_GROUPS = 'groups';
- const SCOPE_WEBSITES = 'websites';
- const SCOPE_STORE = 'store';
- const SCOPE_GROUP = 'group';
- const SCOPE_WEBSITE = 'website';
- /**#@-*/
- }
|