ScopeInterface.php 470 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Store\Model;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. interface ScopeInterface
  12. {
  13. /**#@+
  14. * Scope types
  15. */
  16. const SCOPE_STORES = 'stores';
  17. const SCOPE_GROUPS = 'groups';
  18. const SCOPE_WEBSITES = 'websites';
  19. const SCOPE_STORE = 'store';
  20. const SCOPE_GROUP = 'group';
  21. const SCOPE_WEBSITE = 'website';
  22. /**#@-*/
  23. }