ProviderInterface.php 464 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Eav\Model\ResourceModel\Attribute\DefaultEntityAttributes;
  7. /**
  8. * Interface \Magento\Eav\Model\ResourceModel\Attribute\DefaultEntityAttributes\ProviderInterface
  9. *
  10. */
  11. interface ProviderInterface
  12. {
  13. /**
  14. * Retrieve default entity static attributes
  15. *
  16. * @return string[]
  17. */
  18. public function getDefaultAttributes();
  19. }