RegistryConstants.php 504 B

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