public function Command::getDescription in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Command/Command.php \Symfony\Component\Console\Command\Command::getDescription()
Returns the description for the command.
Return value
string The description for the command
1 call to Command::getDescription()
- 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 465
Class
- Command
- Base class for all commands.
Namespace
Symfony\Component\Console\CommandCode
public function getDescription() {
return $this->description;
}