AttributeSetFinderInterface.php 471 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Catalog\Api;
  8. /**
  9. * Interface AttributeSetFinderInterface
  10. * @api
  11. * @since 101.0.0
  12. */
  13. interface AttributeSetFinderInterface
  14. {
  15. /**
  16. * Get attribute set ids by product ids
  17. *
  18. * @param array $productIds
  19. * @return array
  20. * @since 101.0.0
  21. */
  22. public function findAttributeSetIdsByProductIds(array $productIds);
  23. }