function Command::getHelp
Returns the help for the command.
1 call to Command::getHelp()
- Command::getProcessedHelp in vendor/
symfony/ console/ Command/ Command.php - Returns the processed help for the command replacing the %command.name% and %command.full_name% patterns with the real values dynamically.
2 methods override Command::getHelp()
- LazyCommand::getHelp in vendor/
symfony/ console/ Command/ LazyCommand.php - Returns the help for the command.
- TraceableCommand::getHelp in vendor/
symfony/ console/ Command/ TraceableCommand.php - Returns the help for the command.
File
-
vendor/
symfony/ console/ Command/ Command.php, line 539
Class
- Command
- Base class for all commands.
Namespace
Symfony\Component\Console\CommandCode
public function getHelp() : string {
return $this->help;
}