Skip to content

Commit

Permalink
Fix config reader bug with missing variable
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejslawik committed Aug 14, 2024
1 parent b852128 commit 472ad69
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Model/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,9 @@ public function getLocalDbConfigData(string $key): ?string

public function getConfigPathsToKeep(): array
{;
$defaultPaths = explode(
return explode(
',',
(string) $this->config->getValue(self::XML_PATH_PROJECT_KEEP_CONFIG_PATHS)
);

return array_merge($defaultPaths, $projectIgnoredPaths);
}
}

0 comments on commit 472ad69

Please sign in to comment.