Add app name to the call

Regression from 69b063f4c6

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2016-10-10 16:34:14 +02:00
parent 2c6913ff9f
commit 356ac5d42f
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with 1 additions and 1 deletions

View File

@ -614,7 +614,7 @@ class Installer {
}
$codeChecker = new CodeChecker(new PrivateCheck(new EmptyCheck()));
$errors = $codeChecker->analyseFolder($folder);
$errors = $codeChecker->analyseFolder(basename($folder), $folder);
return empty($errors);
}