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 c61763d commit 9f5f911Copy full SHA for 9f5f911
src/Command/CommandHelper.php
@@ -151,8 +151,10 @@ public static function begin(
151
if ($level === null && isset($projectConfig['parameters']['level'])) {
152
$level = (string) $projectConfig['parameters']['level'];
153
}
154
- if (count($paths) === 0 && isset($projectConfig['parameters']['paths'])) {
+ if (isset($projectConfig['parameters']['paths'])) {
155
$analysedPathsFromConfig = Helpers::expand($projectConfig['parameters']['paths'], $defaultParameters);
156
+ }
157
+ if (count($paths) === 0) {
158
$paths = $analysedPathsFromConfig;
159
160
0 commit comments