Rule.php 533 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Shopping Cart Rule data model
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\OfflineShipping\Model\SalesRule;
  12. /**
  13. * @api
  14. * @since 100.0.2
  15. */
  16. class Rule
  17. {
  18. /**
  19. * Free Shipping option "For matching items only"
  20. */
  21. const FREE_SHIPPING_ITEM = 1;
  22. /**
  23. * Free Shipping option "For shipment with matching items"
  24. */
  25. const FREE_SHIPPING_ADDRESS = 2;
  26. }