| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-store/Model/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-store/Model/ScopeInterface.php |
<?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';
/**#@-*/
}