Skip to content

Commit

Permalink
Merge pull request #15603 from matks/allow-access-to-checkout-process
Browse files Browse the repository at this point in the history
Allow access to Checkout process
  • Loading branch information
matks committed Sep 19, 2019
2 parents 768ae52 + 8ed3f62 commit d69cb11
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion controllers/front/OrderController.php
Expand Up @@ -82,7 +82,18 @@ public function postProcess()
$this->bootstrap();
}

protected function getCheckoutSession()
/**
* @return CheckoutProcess
*/
public function getCheckoutProcess()
{
return $this->checkoutProcess;
}

/**
* @return CheckoutSession
*/
public function getCheckoutSession()
{
$deliveryOptionsFinder = new DeliveryOptionsFinder(
$this->context,
Expand Down

0 comments on commit d69cb11

Please sign in to comment.