Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SaveBilling.php
Go to the documentation of this file.
1 <?php
8 
9 class SaveBilling extends \Magento\Multishipping\Controller\Checkout\Address
10 {
14  public function execute()
15  {
16  if ($addressId = $this->getRequest()->getParam('id')) {
17  $this->_objectManager->create(
18  \Magento\Multishipping\Model\Checkout\Type\Multishipping::class
19  )->setQuoteCustomerBillingAddress(
20  $addressId
21  );
22  }
23  $this->_redirect('*/checkout/overview');
24  }
25 }
_redirect($path, $arguments=[])
Definition: Action.php:167