Index.php 585 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Multishipping\Controller\Checkout;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class Index extends \Magento\Multishipping\Controller\Checkout implements HttpGetActionInterface
  10. {
  11. /**
  12. * Index action of Multishipping checkout
  13. *
  14. * @return void
  15. */
  16. public function execute()
  17. {
  18. $this->_getCheckoutSession()->setCartWasUpdated(false);
  19. $this->_redirect('*/*/addresses');
  20. }
  21. }