RegistryConstants.php 511 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Tax\Controller;
  7. /**
  8. * Declarations of core registry keys used by the Tax module
  9. *
  10. */
  11. class RegistryConstants
  12. {
  13. /**
  14. * Registry key where current tax ID is stored
  15. */
  16. const CURRENT_TAX_RATE_ID = 'current_tax_rate_id';
  17. /**
  18. * Registry key where current tax rate form data is stored
  19. */
  20. const CURRENT_TAX_RATE_FORM_DATA = 'current_tax_rate_form_data';
  21. }