psalm:tldr:63eaf
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.