in src/com/jetbrains/php/tools/quality/psalm/PsalmMessageProcessor.java [88:98]
protected void parseTag(@NotNull String tagName, @NotNull Attributes attributes) {
if (tagName.equals("file")) {
myFile = attributes.getValue("name");
}
else {
myLineNumber = parseLineNumber(attributes.getValue(LINE_NUMBER_ATTR));
mySeverity = attributes.getValue(SEVERITY_ATTR).equals("error") ? ERROR : WARNING;
myMessageBuf.append(attributes.getValue(MESSAGE_ATTR));
myColumn = parseLineNumber(attributes.getValue(COLUMN_NUMBER_ATTR));
}
}