SelectBilling.php 548 B

12345678910111213141516171819202122
  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\Address;
  8. class SelectBilling extends \Magento\Multishipping\Controller\Checkout\Address
  9. {
  10. /**
  11. * @return void
  12. */
  13. public function execute()
  14. {
  15. $this->_getState()->setActiveStep(
  16. \Magento\Multishipping\Model\Checkout\Type\Multishipping\State::STEP_BILLING
  17. );
  18. $this->_view->loadLayout();
  19. $this->_view->renderLayout();
  20. }
  21. }