RegistryConstants.php 369 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\SalesRule\Model;
  7. /**
  8. * Declarations of core registry keys used by the SalesRule module
  9. *
  10. */
  11. class RegistryConstants
  12. {
  13. /**
  14. * Key for current sales rule in registry
  15. */
  16. const CURRENT_SALES_RULE = 'current_promo_sales_rule';
  17. }