Generate a Checkstyle XML report, which can be used with many popular code quality and CI tools. The Checkstyle result will contain all dead tombstones (aka "vampires") with an error-level message.
report:
checkstyle: report/checkstyle.xml # Generate a Checkstyle report in this file
Generates a human-readable HTML report. Includes a dashboard, the ability to browse the source tree and displays tombstones with their status (dead/undead) in the source code.
report:
html: report # Generate a HTML report in this folder
Prints the result on the command line. Not recommended for large codebases with many tombstones since it will print a lot of text on your screen.
report:
console: true # Display report on the console (default: false)
The PHP report simply dumps the data structure with the analyzer result into a PHP file.
report:
php: report/tombstone-report.php # Generate a PHP dump of the result in this file