AttributeProviderInterface.php 364 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Model\EntitySnapshot;
  7. /**
  8. * Interface AttributeProviderInterface
  9. */
  10. interface AttributeProviderInterface
  11. {
  12. /**
  13. * @param string $entityType
  14. * @return array
  15. */
  16. public function getAttributes($entityType);
  17. }