StateKeyInterface.php 416 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Catalog\Model\Layer;
  8. /**
  9. * Interface \Magento\Catalog\Model\Layer\StateKeyInterface
  10. *
  11. */
  12. interface StateKeyInterface
  13. {
  14. /**
  15. * Build state key
  16. *
  17. * @param \Magento\Catalog\Model\Category $category
  18. * @return string
  19. */
  20. public function toString($category);
  21. }