Skip to content

Commit

Permalink
Merge pull request #15 from DealerDirect/hotfix/coding-standards-sear…
Browse files Browse the repository at this point in the history
…ch-depth

Fixed #13: Incorrect coding standards search depth
  • Loading branch information
frenck authored Feb 17, 2017
2 parents 04746ad + 4e1750f commit 8232dc1
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 8232dc1

Please sign in to comment.