Skip to content

Commit

Permalink
Allow to validate the password_policy app
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvergessen committed Sep 8, 2016
1 parent 8c4e5a9 commit 69b063f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions lib/private/App/CodeChecker/CodeChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,25 @@ public function analyse($appId) {
throw new \RuntimeException("No app with given id <$appId> known.");
}

return $this->analyseFolder($appPath);
return $this->analyseFolder($appId, $appPath);
}

/**
* @param string $appId
* @param string $folder
* @return array
*/
public function analyseFolder($folder) {
public function analyseFolder($appId, $folder) {
$errors = [];

$excludedDirectories = ['vendor', '3rdparty', '.git', 'l10n', 'tests', 'test'];
if ($appId === 'password_policy') {
$excludedDirectories[] = 'lists';
}

$excludes = array_map(function($item) use ($folder) {
return $folder . '/' . $item;
}, ['vendor', '3rdparty', '.git', 'l10n', 'tests', 'test']);
}, $excludedDirectories);

$iterator = new RecursiveDirectoryIterator($folder, RecursiveDirectoryIterator::SKIP_DOTS);
$iterator = new RecursiveCallbackFilterIterator($iterator, function($item) use ($folder, $excludes){
Expand Down

0 comments on commit 69b063f

Please sign in to comment.