|
|
@@ -77,8 +77,9 @@ class SaveCheckoutCartProcessor implements ProcessorInterface
|
|
|
} catch (\Exception $e) {
|
|
|
throw new OperationFailedException($e->getMessage(), 0, $e);
|
|
|
}
|
|
|
+ $cart = Cart::getCart();
|
|
|
|
|
|
- return CartData::fromModel(Cart::getCart());
|
|
|
+ return (array) CartData::fromModel($cart);
|
|
|
}
|
|
|
|
|
|
/**
|