ScopeProviderInterface.php 391 B

1234567891011121314151617181920
  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. * Class ScopeProviderInterface
  9. */
  10. interface ScopeProviderInterface
  11. {
  12. /**
  13. * @param string $entityType
  14. * @param array $entityData
  15. * @return mixed
  16. */
  17. public function getContext($entityType, $entityData = []);
  18. }