SortLink.php 425 B

123456789101112131415161718192021
  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. * Class for sortable links.
  9. */
  10. class SortLink extends \Magento\Framework\View\Element\Html\Link\Current implements SortLinkInterface
  11. {
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public function getSortOrder()
  16. {
  17. return $this->getData(self::SORT_ORDER);
  18. }
  19. }