From bb3932cfdb8985fe8c1e752ab99414bdffc47ebf Mon Sep 17 00:00:00 2001 From: Tommy Quissens <tommy.quissens@storefront.be> Date: Thu, 14 Dec 2017 10:27:01 +0100 Subject: [PATCH] fixed code styles --- app/code/Magento/Customer/Model/Checkout/ConfigProvider.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php b/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php index 1e8b3daddae..2ad32b0b422 100644 --- a/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php +++ b/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php @@ -51,7 +51,8 @@ class ConfigProvider implements ConfigProviderInterface $this->urlBuilder=$urlBuilder; $this->storeManager = $storeManager; $this->scopeConfig = $scopeConfig; - $this->customerUrl = $customerUrl ?? \Magento\Framework\App\ObjectManager::getInstance()->get(\Magento\Customer\Model\Url::class); + $this->customerUrl = $customerUrl ?? \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Customer\Model\Url::class); } /** -- GitLab