We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be65bab commit ce563e2Copy full SHA for ce563e2
src/DependencyInjection/ValidateExcludePathsExtension.php
@@ -58,12 +58,12 @@ public function loadConfiguration(): void
58
}
59
60
$newExcludePaths = [];
61
- if (array_key_exists('analyse', $excludePaths)) {
62
- $newExcludePaths['analyse'] = $excludePaths['analyse'];
63
- }
64
if (array_key_exists('analyseAndScan', $excludePaths)) {
65
$newExcludePaths['analyseAndScan'] = $excludePaths['analyseAndScan'];
66
+ if (array_key_exists('analyse', $excludePaths)) {
+ $newExcludePaths['analyse'] = $excludePaths['analyse'];
+ }
67
68
foreach ($newExcludePaths as $key => $p) {
69
$newExcludePaths[$key] = array_map(
0 commit comments