You are here

public function Command::getHelp in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Command/Command.php \Symfony\Component\Console\Command\Command::getHelp()

Returns the help for the command.

Return value

string 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.

File

vendor/symfony/console/Command/Command.php, line 489

Class

Command
Base class for all commands.

Namespace

Symfony\Component\Console\Command

Code

public function getHelp() {
  return $this->help;
}