From d3e0bbca4b39dad6860e530da0b5bd0f334d95a9 Mon Sep 17 00:00:00 2001 From: Don Bosco van Hoi Date: Tue, 20 Dec 2016 12:54:08 +0100 Subject: [PATCH] Update ImportCommand.php --- .../Magerun/Base/Command/Environment/ImportCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/Mothership/Magerun/Base/Command/Environment/ImportCommand.php b/src/lib/Mothership/Magerun/Base/Command/Environment/ImportCommand.php index 94aa461..3ade42c 100644 --- a/src/lib/Mothership/Magerun/Base/Command/Environment/ImportCommand.php +++ b/src/lib/Mothership/Magerun/Base/Command/Environment/ImportCommand.php @@ -105,7 +105,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $this->writeSection($output, 'Applying configuration'); - $config = File::loadConfig($file_name); + $config = include $file_name; $table = array(); foreach ($config as $path => $data) { @@ -217,4 +217,4 @@ protected function _setStoreConfig($scope, $scope_id, $path, $value) ); } } -} \ No newline at end of file +}