We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Psalm XML
<?xml version="1.0" encoding="UTF-8"?> <report> <item/> </report>
Shows this html
The text was updated successfully, but these errors were encountered:
Interesting; this is actually per expectations. In the XSL:
<h1>Total violations: <xsl:value-of select="count(//report/item)" /></h1>
In the sample empty report here, there is indeed one //report/item element, so this is why it displays 1.
//report/item
Might be worth checking if there's an xsl selector for non-empty //report/item elements only.
Sorry, something went wrong.
No branches or pull requests
Psalm XML
Shows this html
The text was updated successfully, but these errors were encountered: