Forrest logo
back to the psalm tool

psalm:tldr:63eaf

psalm: Include informational findings in the output.
$ psalm --show-info
try on your machine

The command "psalm --show-info" is used to display additional information about the analysis performed by the Psalm static analysis tool.

Psalm is a tool that helps in detecting errors and bugs in PHP code. When you run "psalm" command, it performs various types of analysis on your PHP code to check for potential issues such as type errors, unused variables, undefined classes/functions, and many others.

The "--show-info" flag is used to enable the display of extra information about the analysis. This includes details about the analysis process, the files being analyzed, the level of checking being performed, and other relevant information.

By running "psalm --show-info", you will get a more detailed output alongside the regular analysis results. This can be useful for understanding how Psalm is analyzing your code and for troubleshooting any issues that may arise during the analysis process.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the psalm tool