Skip to content

Commit

Permalink
Replace plus by a dot as concat operator in filename creation
Browse files Browse the repository at this point in the history
  • Loading branch information
lanfisis committed Mar 10, 2016
1 parent 1ce4c58 commit 6a121ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/php/PHPMD/RuleSetFactory.php
Expand Up @@ -187,7 +187,7 @@ private function createRuleSetFileName($ruleSetOrFileName)
if (file_exists($fileName) === true) {
return $fileName;
}
$fileName = $includePath . '/' . $ruleSetOrFileName + ".xml";
$fileName = $includePath . '/' . $ruleSetOrFileName . ".xml";
if (file_exists($fileName) === true) {
return $fileName;
}
Expand Down

0 comments on commit 6a121ea

Please sign in to comment.