Skip to content

Commit

Permalink
Fix phpcs standards.
Browse files Browse the repository at this point in the history
  • Loading branch information
vpodorozh committed Mar 19, 2024
1 parent c34dc29 commit 72ad40c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Model/Processor/ImportProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,13 @@ public function process()
if ($value === self::DELETE_CONFIG_FLAG) {
$this->configWriter->delete($configPath, $scopeType, $scopeId);
$this->getOutput()->writeln(sprintf('<comment>[%s] [%s] %s => %s</comment>', $scopeType, $scopeId, $configPath, 'DELETED'));

continue;
}

if ($value === self::KEEP_CONFIG_FLAG) {
$this->getOutput()->writeln(sprintf('<comment>[%s] [%s] %s => %s</comment>', $scopeType, $scopeId, $configPath, 'KEPT'));

continue;
}

Expand All @@ -120,6 +122,7 @@ public function process()

/**
* @param array $files
*
* @return array
*/
private function collectConfigs(array $files): array
Expand Down

0 comments on commit 72ad40c

Please sign in to comment.