phpstan:options:display
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.