From 795c63041ef3f3294750f25dbcdf051fddcf528f Mon Sep 17 00:00:00 2001 From: Nolwennig Date: Sat, 8 May 2021 10:19:45 +0200 Subject: [PATCH] fix crossing configuration typing error Quick edit from github. Only tested on my local env and it's work fine. --- lib/Magento/Themes/MagentoEE114/ThemeConfiguration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Magento/Themes/MagentoEE114/ThemeConfiguration.php b/lib/Magento/Themes/MagentoEE114/ThemeConfiguration.php index 5c2088e..733246b 100644 --- a/lib/Magento/Themes/MagentoEE114/ThemeConfiguration.php +++ b/lib/Magento/Themes/MagentoEE114/ThemeConfiguration.php @@ -192,12 +192,12 @@ class ThemeConfiguration extends AbstractThemeConfiguration public function getCustomerThemeClass() { - return 'Magium\Magento\Themes\Magento19\Customer\ThemeConfiguration'; + return 'Magium\Magento\Themes\MagentoEE114\Customer\ThemeConfiguration'; } public function getCheckoutThemeClass() { - return 'Magium\Magento\Themes\Magento19\OnePageCheckout\ThemeConfiguration'; + return 'Magium\Magento\Themes\MagentoEE114\OnePageCheckout\ThemeConfiguration'; } }