ScopeInterface.php 447 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Model\Entity;
  7. /**
  8. * Interface ScopeInterface
  9. */
  10. interface ScopeInterface
  11. {
  12. /**
  13. * @return string
  14. */
  15. public function getValue();
  16. /**
  17. * @return string
  18. */
  19. public function getIdentifier();
  20. /**
  21. * @return ScopeInterface|null
  22. */
  23. public function getFallback();
  24. }