Data.php 466 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\CatalogInventory\Helper;
  7. /**
  8. * Catalog Inventory default helper
  9. */
  10. class Data extends \Magento\Framework\App\Helper\AbstractHelper
  11. {
  12. /**
  13. * Error codes, that Catalog Inventory module can set to quote or quote items
  14. */
  15. const ERROR_QTY = 1;
  16. /**
  17. * Error qty increments
  18. */
  19. const ERROR_QTY_INCREMENTS = 2;
  20. }