Skip to content

Commit

Permalink
Test phpstan analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
limpidsa authored and random1223 committed Sep 19, 2024
1 parent d5dd1a7 commit 94a4fef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static List<CodeAnalysisIssueDto> convertResult(String successOutput, Str
issueDto.setFilePath(filePath);
issueDto.setStartLineNumber(phpstanMessage.getLine());
String identifier = phpstanMessage.getIdentifier();
issueDto.setIssueCategory(identifier);
issueDto.setIssueCategory("generic");
issueDto.setDescription(message);
issueDto.setIssueCode(identifier);
issueDto.setPriority(defaultPriority);
Expand Down

0 comments on commit 94a4fef

Please sign in to comment.