Skip to content

Commit 8232dc1

Browse files
authored
Merge pull request #15 from DealerDirect/hotfix/coding-standards-search-depth
Fixed #13: Incorrect coding standards search depth
2 parents 04746ad + 4e1750f commit 8232dc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ private function updateInstalledPaths()
269269
$finder->files()
270270
->ignoreVCS(true)
271271
->in($packageInstallPath)
272-
->depth('> 1')
272+
->depth('>= 1')
273273
->depth('< 4')
274274
->name('ruleset.xml');
275275
foreach ($finder as $ruleset) {

0 commit comments

Comments
 (0)