RegistryConstants.php 367 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Search\Controller;
  7. /**
  8. * Declarations of core registry keys used by the search module
  9. *
  10. */
  11. class RegistryConstants
  12. {
  13. /**
  14. * Registry key where current synonyms page is stored
  15. */
  16. const SEARCH_SYNONYMS = 'search_synonyms';
  17. }