Skip to content

Commit d1480be

Browse files
author
Bohdan Korablov
committed
MAGETWO-65208: Store checksum for every section of configuration file & change behavior on read-only FS & add sorting of importers
1 parent 9305bfb commit d1480be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Deploy/Model/DeploymentConfig/ImporterPool.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ public function getImporters()
123123
$importers = $this->sort($this->importers);
124124

125125
foreach ($importers as $section => $importer) {
126-
if (empty($importer['class'])) {
127-
throw new ConfigurationMismatchException(__('Parameter "class" must be present.'));
128-
}
126+
if (empty($importer['class'])) {
127+
throw new ConfigurationMismatchException(__('Parameter "class" must be present.'));
128+
}
129129

130130
$sortedImporters[$section] = $importer['class'];
131131
}

0 commit comments

Comments
 (0)