SortLinkInterface.php 490 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Block\Account;
  7. /**
  8. * Interface for sortable links.
  9. * @api
  10. * @since 101.0.0
  11. */
  12. interface SortLinkInterface
  13. {
  14. /**#@+
  15. * Constant for confirmation status
  16. */
  17. const SORT_ORDER = 'sortOrder';
  18. /**#@-*/
  19. /**
  20. * Get sort order for block.
  21. *
  22. * @return int
  23. * @since 101.0.0
  24. */
  25. public function getSortOrder();
  26. }