12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\CatalogInventory\Model\ResourceModel;
- /**
- * Correct particular stock products qty
- */
- interface QtyCounterInterface
- {
- /**
- * Correct particular stock products qty based on operator
- *
- * @param int[] $items
- * @param int $websiteId
- * @param string $operator +/-
- * @return void
- */
- public function correctItemsQty(array $items, $websiteId, $operator);
- }
|