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 +}