Forrest logo
back to the phpstan tool

phpstan:options:display

Display available options for analysis.
$ phpstan analyse --help
try on your machine

The command phpstan analyse --help is used to get help documentation for the phpstan analyse command.

In detail, phpstan is a PHP Static Analyzer tool that helps in finding issues and bugs in PHP code. analyse is the command that is used to analyze PHP code.

The --help option prints out a list of available options and arguments for the phpstan analyse command, along with a brief description of each option or argument. This option provides a quick reference or reminder of how to use the command and its options.

Therefore, when you run the phpstan analyse --help command in your command-line interface, it will display the help documentation that explains the different options and arguments available for the phpstan analyse command, thus providing you with the necessary guidance on how to use the tool effectively.

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 phpstan tool