From 4e1750f82129be4995e8859fa28fae8c73a19a78 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 17 Feb 2017 10:48:41 +0100 Subject: [PATCH] Fixed #13: Incorrect coding standards search depth --- src/Plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugin.php b/src/Plugin.php index 28703c2d..b3b5bb88 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -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) {