* @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\Stock\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Product\Stock\Query\GetCombinationStockMovements; use PrestaShop\PrestaShop\Core\Domain\Product\Stock\QueryResult\StockMovement; /** * Defines contract for GetStockMovementsHistoryHandler */ interface GetCombinationStockMovementsHandlerInterface { /** * @return StockMovement[] */ public function handle(GetCombinationStockMovements $query): array; }