Context.php 362 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Model;
  7. class Context
  8. {
  9. /**
  10. * Customer group cache context
  11. */
  12. const CONTEXT_GROUP = 'customer_group';
  13. /**
  14. * Customer authorization cache context
  15. */
  16. const CONTEXT_AUTH = 'customer_logged_in';
  17. }