diff --git a/Model/Processor/ImportProcessor.php b/Model/Processor/ImportProcessor.php
index fe6ff6c..ecc8b73 100644
--- a/Model/Processor/ImportProcessor.php
+++ b/Model/Processor/ImportProcessor.php
@@ -103,11 +103,13 @@ public function process()
if ($value === self::DELETE_CONFIG_FLAG) {
$this->configWriter->delete($configPath, $scopeType, $scopeId);
$this->getOutput()->writeln(sprintf('[%s] [%s] %s => %s', $scopeType, $scopeId, $configPath, 'DELETED'));
+
continue;
}
if ($value === self::KEEP_CONFIG_FLAG) {
$this->getOutput()->writeln(sprintf('[%s] [%s] %s => %s', $scopeType, $scopeId, $configPath, 'KEPT'));
+
continue;
}
@@ -120,6 +122,7 @@ public function process()
/**
* @param array $files
+ *
* @return array
*/
private function collectConfigs(array $files): array