* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Product\Combination\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Product\Combination\Query\GetCombinationSuppliers; use PrestaShop\PrestaShop\Core\Domain\Product\Supplier\QueryResult\ProductSupplierForEditing; /** * Defines contract to handle @see GetCombinationSuppliers query */ interface GetCombinationSuppliersHandlerInterface { /** * @param GetCombinationSuppliers $query * * @return ProductSupplierForEditing[] */ public function handle(GetCombinationSuppliers $query): array; }