Skip to content

Commit

Permalink
Fixed #13: Incorrect coding standards search depth
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed Feb 17, 2017
1 parent 04746ad commit 4e1750f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ private function updateInstalledPaths()
$finder->files()
->ignoreVCS(true)
->in($packageInstallPath)
->depth('> 1')
->depth('>= 1')
->depth('< 4')
->name('ruleset.xml');
foreach ($finder as $ruleset) {
Expand Down

0 comments on commit 4e1750f

Please sign in to comment.