123456789101112131415161718192021222324 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Catalog\Api;
- /**
- * Interface AttributeSetFinderInterface
- * @api
- * @since 101.0.0
- */
- interface AttributeSetFinderInterface
- {
- /**
- * Get attribute set ids by product ids
- *
- * @param array $productIds
- * @return array
- * @since 101.0.0
- */
- public function findAttributeSetIdsByProductIds(array $productIds);
- }
|