Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-inventory-indexer/Indexer/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-inventory-indexer/Indexer/SelectBuilderInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\InventoryIndexer\Indexer;

use Magento\Framework\DB\Select;

/**
 * Prepare select for data provider
 *
 * @api
 */
interface SelectBuilderInterface
{
    /**
     * Prepare select based on stockId
     *
     * @param int $stockId
     * @return Select
     */
    public function execute(int $stockId): Select;
}