ScopedAttributeInterface.php 311 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Eav\Model\Entity\Attribute;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. interface ScopedAttributeInterface
  12. {
  13. const SCOPE_STORE = 0;
  14. const SCOPE_GLOBAL = 1;
  15. const SCOPE_WEBSITE = 2;
  16. }